After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 59465 - Please replace strcat with sprintf for i18n
Please replace strcat with sprintf for i18n
Status: VERIFIED FIXED
Product: ekiga
Classification: Applications
Component: general
GIT master
Other Linux
: Normal normal
: ---
Assigned To: Damien Sandras
Damien Sandras
Depends on:
Blocks:
 
 
Reported: 2001-08-24 01:59 UTC by Christian Rose
Modified: 2009-08-15 18:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Christian Rose 2001-08-24 01:59:53 UTC
strcpy (msg, "");
  strcat (msg, _("Connected with "));
  strcat (msg, cname);
  strcat (msg, _(" using "));
  strcat (msg, capp);

(from src/endpoint.cpp:449)

This message design is very bad for i18n. Please use a sprintf-like
solution instead.