aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorYaroslav Tykhiy <ytykhiy@gmail.com>2004-11-15 12:47:44 +0000
committerYaroslav Tykhiy <ytykhiy@gmail.com>2004-11-15 12:47:44 +0000
commit3b48b87700a626634147eb1c55e5cb95edf0cb08 (patch)
treea63871aa86c7c655c51ac302165c4549a2851ae6 /libexec
parent41c57b487e0bf0fc3acf3f9c970d5bbfb916d562 (diff)
downloadsrc-3b48b87700a626634147eb1c55e5cb95edf0cb08.tar.gz
src-3b48b87700a626634147eb1c55e5cb95edf0cb08.zip
Don't invent ways of capitalization orthogonal to the English grammar.
Notes
Notes: svn path=/head/; revision=137729
Diffstat (limited to 'libexec')
-rw-r--r--libexec/ftpd/ftpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ftpd/ftpd.c b/libexec/ftpd/ftpd.c
index 467962649951..cd31881eedbc 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