summaryrefslogtreecommitdiff
path: root/usr.bin/pr
diff options
context:
space:
mode:
authorPhilippe Charnier <charnier@FreeBSD.org>2004-07-26 20:24:59 +0000
committerPhilippe Charnier <charnier@FreeBSD.org>2004-07-26 20:24:59 +0000
commitbd5de413393bf2cd10538abdb4471c9524187eed (patch)
treebd91d394865a2e247d28e7cb95b8817117a4c739 /usr.bin/pr
parent6cc6f12231c7267d34a409cfbd960c7f3d69f8eb (diff)
downloadsrc-test-bd5de413393bf2cd10538abdb4471c9524187eed.tar.gz
src-test-bd5de413393bf2cd10538abdb4471c9524187eed.zip
No capital letter after :
Notes
Notes: svn path=/head/; revision=132672
Diffstat (limited to 'usr.bin/pr')
-rw-r--r--usr.bin/pr/pr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/pr/pr.c b/usr.bin/pr/pr.c
index 1867c7c5bc14b..947404217bdcf 100644
--- a/usr.bin/pr/pr.c
+++ b/usr.bin/pr/pr.c
@@ -1328,7 +1328,7 @@ nxtfile(int argc, char **argv, const char **fname, char *buf, int dt)
++errcnt;
if (nodiag)
continue;
- (void)fprintf(err, "pr: Cannot open %s, %s\n",
+ (void)fprintf(err, "pr: cannot open %s, %s\n",
argv[eoptind], strerror(errno));
continue;
}
@@ -1357,7 +1357,7 @@ nxtfile(int argc, char **argv, const char **fname, char *buf, int dt)
++errcnt;
(void)fclose(inf);
(void)fprintf(err,
- "pr: Cannot stat %s, %s\n",
+ "pr: cannot stat %s, %s\n",
argv[eoptind], strerror(errno));
return(NULL);
}
@@ -1673,7 +1673,7 @@ setup(int argc, char *argv[])
case 'l':
if (!isdigit((unsigned char)*eoptarg) || ((lines=atoi(eoptarg)) < 1)) {
(void)fputs(
- "pr: Number of lines must be 1 or more\n",err);
+ "pr: number of lines must be 1 or more\n",err);
return(1);
}
break;