Updated options procesign to allow either password= or passwd= for
compatibility with the way we set passwords in other places
This commit is contained in:
@ -270,6 +270,10 @@ unsigned char *defuuid;
|
||||
{
|
||||
inst->password = strdup(value);
|
||||
}
|
||||
else if (strcmp(options[i], "passwd") == 0)
|
||||
{
|
||||
inst->password = strdup(value);
|
||||
}
|
||||
else if (strcmp(options[i], "master-id") == 0)
|
||||
{
|
||||
inst->masterid = atoi(value);
|
||||
|
Reference in New Issue
Block a user