Fix g_strdup_printf() call causing removal of hexchat.conf
This commit is contained in:
parent
1e35c196e8
commit
fdc316a1ce
|
@ -849,7 +849,7 @@ save_config (void)
|
|||
check_prefs_dir ();
|
||||
|
||||
config = default_file ();
|
||||
new_config = g_strdup_printf (config, ".new");
|
||||
new_config = g_strdup_printf ("%s.new", config);
|
||||
|
||||
fh = g_open (new_config, OFLAGS | O_TRUNC | O_WRONLY | O_CREAT, 0600);
|
||||
if (fh == -1)
|
||||
|
|
Loading…
Reference in New Issue