[Asterisk-cvs] asterisk/apps app_setcidname.c,1.3,1.4
markster at lists.digium.com
markster at lists.digium.com
Wed Jul 14 04:03:03 CDT 2004
- Previous message: [Asterisk-cvs] asterisk cli.c,1.45,1.46 enum.c,1.19,1.20 file.c,1.45,1.46 logger.c,1.41,1.42 manager.c,1.63,1.64 muted.c,1.3,1.4 pbx.c,1.136,1.137 srv.c,1.9,1.10 translate.c,1.27,1.28
- Next message: [Asterisk-cvs] asterisk/res res_parking.c,1.25,1.26
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv22330/apps
Modified Files:
app_setcidname.c
Log Message:
Oops forgot one (bug #2038)
Index: app_setcidname.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_setcidname.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- app_setcidname.c 22 Jun 2004 19:32:52 -0000 1.3
+++ app_setcidname.c 14 Jul 2004 07:48:47 -0000 1.4
@@ -72,7 +72,7 @@
strncpy(newcid, l, sizeof(newcid) - 1);
}
} else
- strncpy(newcid, tmp, sizeof(newcid));
+ strncpy(newcid, tmp, sizeof(newcid) - 1);
ast_set_callerid(chan, !ast_strlen_zero(newcid) ? newcid : NULL, anitoo);
LOCAL_USER_REMOVE(u);
return res;
- Previous message: [Asterisk-cvs] asterisk cli.c,1.45,1.46 enum.c,1.19,1.20 file.c,1.45,1.46 logger.c,1.41,1.42 manager.c,1.63,1.64 muted.c,1.3,1.4 pbx.c,1.136,1.137 srv.c,1.9,1.10 translate.c,1.27,1.28
- Next message: [Asterisk-cvs] asterisk/res res_parking.c,1.25,1.26
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list