Update of /cvsroot/gaim/gaim/src/protocols/oscar
In directory usw-pr-cvs1:/tmp/cvs-serv12023/src/protocols/oscar
Modified Files:
oscar.c
Log Message:
use snprintf instead of sprintf
Index: oscar.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/oscar.c,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -d -r1.150 -r1.151
--- oscar.c 30 Sep 2002 01:05:17 -0000 1.150
+++ oscar.c 30 Sep 2002 04:23:24 -0000 1.151
@@ -398,7 +398,7 @@
c->inpa = 0;
c->fd = -1;
aim_conn_kill(odata->sess, &conn);
- sprintf(buf, _("You have been disconnected from chat room %s."), c->name);
+ snprintf(buf, sizeof(buf), _("You have been disconnected from chat room %s."), c->name);
do_error_dialog(buf, NULL, GAIM_ERROR);
} else if (conn->type == AIM_CONN_TYPE_CHATNAV) {
if (odata->cnpa > 0)
@@ -1822,7 +1822,7 @@
destn = va_arg(ap, char *);
va_end(ap);
- sprintf(buf, _("Your message to %s did not get sent:"), destn);
+ snprintf(buf, sizeof(buf), _("Your message to %s did not get sent:"), destn);
do_error_dialog(buf, (reason < msgerrreasonlen) ? msgerrreason[reason] : _("No reason was given."), GAIM_ERROR);
return 1;
@@ -1839,7 +1839,7 @@
destn = va_arg(ap, char *);
va_end(ap);
- sprintf(buf, _("User information for %s unavailable:"), destn);
+ snprintf(buf, sizeof(buf), _("User information for %s unavailable:"), destn);
do_error_dialog(buf, (reason < msgerrreasonlen) ? msgerrreason[reason] : _("No reason was given."), GAIM_ERROR);
return 1;
|