1 --- mc-4.6.2-pre1/src/cmd.c
2 +++ mc-4.6.2-pre1/src/cmd.c
5 str = g_strconcat ( _(" Setup saved to ~/"), PROFILE_NAME, (char *) NULL);
7 - message (0, _(" Setup "), str);
8 + message (0, _(" Setup "), "%s", str);
12 --- mc-4.6.2-pre1/src/hotlist.c
13 +++ mc-4.6.2-pre1/src/hotlist.c
15 msg = g_strconcat (_("MC was unable to write ~/"), HOTLIST_FILENAME,
16 _(" file, your old hotlist entries were not deleted"), (char *) NULL);
18 - message (D_ERROR, _(" Hotlist Load "), msg);
19 + message (D_ERROR, _(" Hotlist Load "), "%s", msg);
23 --- mc-4.6.2-pre1/vfs/smbfs.c
24 +++ mc-4.6.2-pre1/vfs/smbfs.c
27 my_remote = p; /* strip off share/service name */
28 /* create remote filename as understood by smb clientgen */
29 - result = g_strconcat (my_remote, trailing_asterik ? "/*" : "", 0);
30 + result = g_strconcat (my_remote, trailing_asterik ? "/*" : "", (char *) NULL);
31 unix_to_dos (result, /* inplace = */ 1); /* code page conversion */
32 str_replace(result, '/', '\\');