aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>2000-01-25 19:16:31 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>2000-01-25 19:16:31 +0000
commit81d1d8979b6dceb037274cd8c340f64c6d2e5648 (patch)
treeabda2cc82bc6f2d90842cee0374b3c06011c71bb /usr.sbin
parentba6017903c0f75801c50e7f35ee15628c46101a3 (diff)
downloadsrc-81d1d8979b6dceb037274cd8c340f64c6d2e5648.tar.gz
src-81d1d8979b6dceb037274cd8c340f64c6d2e5648.zip
Argh, this is what I get for testing, making one last "harmless cosmetic
tweak" and then committing. /me got what he deserved, an embarassing build failure.
Notes
Notes: svn path=/head/; revision=56606
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/sysinstall/anonFTP.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysinstall/anonFTP.c b/usr.sbin/sysinstall/anonFTP.c
index 75ffab383c64..70a07358212b 100644
--- a/usr.sbin/sysinstall/anonFTP.c
+++ b/usr.sbin/sysinstall/anonFTP.c
@@ -284,7 +284,7 @@ configAnonFTP(dialogMenuItem *self)
if (DITEM_STATUS(createFtpUser()) == DITEM_SUCCESS) {
msgNotify("Copying password information for anon FTP.");
- vsystem("awk -F: '{if ($3 < 10 || $1 == "ftp") print $0}' /etc/passwd > %s/etc/passwd && chmod 444 %s/etc/passwd", tconf.homedir, tconf.homedir);
+ vsystem("awk -F: '{if ($3 < 10 || $1 == \"ftp\") print $0}' /etc/passwd > %s/etc/passwd && chmod 444 %s/etc/passwd", tconf.homedir, tconf.homedir);
vsystem("awk -F: '{if ($3 < 100) print $0}' /etc/group > %s/etc/group && chmod 444 %s/etc/group", tconf.homedir, tconf.homedir);
vsystem("chown -R root.%s %s/pub", tconf.group, tconf.homedir);
}