GNOME Bugzilla – Bug 59465
Please replace strcat with sprintf for i18n
Last modified: 2009-08-15 18:40:50 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.