mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Fix tiny typo (bug #2455)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3791 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -8043,7 +8043,7 @@ static struct sip_user *build_user(char *name, struct ast_variable *v)
|
||||
} else if (!strcasecmp(v->name, "secret")) {
|
||||
strncpy(user->secret, v->value, sizeof(user->secret)-1);
|
||||
} else if (!strcasecmp(v->name, "md5secret")) {
|
||||
strncpy(user->md5secret, v->value, sizeof(user->secret)-1);
|
||||
strncpy(user->md5secret, v->value, sizeof(user->md5secret)-1);
|
||||
} else if (!strcasecmp(v->name, "promiscredir")) {
|
||||
user->promiscredir = ast_true(v->value);
|
||||
} else if (!strcasecmp(v->name, "dtmfmode")) {
|
||||
|
Reference in New Issue
Block a user