From ddaaf2c2ee77cb7c0970dbb19af234fddb6f0b9e Mon Sep 17 00:00:00 2001 From: yar Date: Mon, 15 Nov 2004 12:47:44 +0000 Subject: Don't invent ways of capitalization orthogonal to the English grammar. --- libexec/ftpd/ftpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libexec/ftpd/ftpd.c') diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c index 4679626..cd31881 100644 --- a/libexec/ftpd/ftpd.c +++ b/libexec/ftpd/ftpd.c @@ -2242,7 +2242,7 @@ statfilecmd(char *filename) code = lstat(filename, &st) == 0 && S_ISDIR(st.st_mode) ? 212 : 213; (void)snprintf(line, sizeof(line), _PATH_LS " -lgA %s", filename); fin = ftpd_popen(line, "r"); - lreply(code, "status of %s:", filename); + lreply(code, "Status of %s:", filename); atstart = 1; while ((c = getc(fin)) != EOF) { if (c == '\n') { @@ -2271,7 +2271,7 @@ statfilecmd(char *filename) atstart = (c == '\n'); } (void) ftpd_pclose(fin); - reply(code, "End of Status"); + reply(code, "End of status"); } void -- cgit v1.1