[Asterisk-cvs] asterisk/channels chan_sip.c,1.505,1.506
markster at lists.digium.com
markster at lists.digium.com
Thu Sep 16 08:51:47 CDT 2004
Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv909/channels
Modified Files:
chan_sip.c
Log Message:
Fix tiny typo (bug #2455)
Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.505
retrieving revision 1.506
diff -u -d -r1.505 -r1.506
--- chan_sip.c 15 Sep 2004 19:27:23 -0000 1.505
+++ chan_sip.c 16 Sep 2004 12:53:10 -0000 1.506
@@ -8043,7 +8043,7 @@
} 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")) {
More information about the svn-commits
mailing list