dect
/
linux-2.6
Archived
13
0
Fork 0

kconfig: fix saving alternate kconfig file in parent dir

This fixes bugzilla entry: 7182
http://bugzilla.kernel.org/show_bug.cgi?id=7182

With this patch we no longer append the directory part twice
before saving the config file.
This patch has been sent to Roman Zippel for review with no feedback.
It is so obviously simple that this should be OK to apply it anyway.

Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
Sam Ravnborg 2006-10-01 11:48:53 +02:00
parent ea837f1c05
commit 9a3d0fe84f
1 changed files with 1 additions and 1 deletions

View File

@ -517,7 +517,7 @@ int conf_write(const char *name)
fclose(out);
if (*tmpname) {
strcat(dirname, name ? name : conf_get_configname());
strcat(dirname, basename);
strcat(dirname, ".old");
rename(newname, dirname);
if (rename(tmpname, newname))