Don't invent ways of capitalization orthogonal to the English grammar.

This commit is contained in:
Yaroslav Tykhiy 2004-11-15 12:47:44 +00:00
parent 41c57b487e
commit 3b48b87700

View File

@ -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