No capital letter after :

This commit is contained in:
Philippe Charnier 2004-07-26 20:24:59 +00:00
parent 6cc6f12231
commit bd5de41339
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=132672

View file

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