diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2008-05-11 07:13:08 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2008-05-11 07:13:08 +0000 |
| commit | 228a5220729c772bd460274a1ab036315de3cfa3 (patch) | |
| tree | 27ea8a0f9f934827aa58967de8bc6f8263a94867 /usr.sbin/sade/variable.c | |
| parent | 4b0532806fc389ef8eea7929d37dbed31446d7fd (diff) | |
Notes
Diffstat (limited to 'usr.sbin/sade/variable.c')
| -rw-r--r-- | usr.sbin/sade/variable.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/sade/variable.c b/usr.sbin/sade/variable.c index 7809deb003fa9..9abbcf4028d10 100644 --- a/usr.sbin/sade/variable.c +++ b/usr.sbin/sade/variable.c @@ -238,12 +238,12 @@ dump_variables(dialogMenuItem *unused) Variable *vp; if (isDebug()) - msgDebug("Writing sysinstall variables to file..\n"); + msgDebug("Writing %s variables to file..\n", StartName); - fp = fopen("/etc/sysinstall.vars", "w"); + fp = fopen("/etc/sade.vars", "w"); if (!fp) { - msgConfirm("Unable to write to /etc/sysinstall.vars: %s", - strerror(errno)); + msgConfirm("Unable to write to /etc/%s.vars: %s", + StartName, strerror(errno)); return DITEM_FAILURE; } |
