Do not dot terminate sentences inside FILES section. Lowercase
inside error messages.
This commit is contained in:
parent
d67724c7c9
commit
e2b7d85745
@ -277,7 +277,7 @@ use the
|
||||
.Dq nowait
|
||||
entry.
|
||||
Connection requests for these services are accepted by
|
||||
.Nm inetd ,
|
||||
.Nm Ns ,
|
||||
and the server is given only the newly-accepted socket connected
|
||||
to a client of the service.
|
||||
Most stream-based services operate in this manner.
|
||||
@ -531,14 +531,14 @@ to list TCPMUX services in
|
||||
.Sh "FILES"
|
||||
.Bl -tag -width /var/run/inetd.pid -compact
|
||||
.It Pa /etc/inetd.conf
|
||||
configuration file.
|
||||
configuration file
|
||||
.It Pa /etc/rpc
|
||||
translation of service names to RPC program numbers.
|
||||
translation of service names to RPC program numbers
|
||||
.It Pa /etc/services
|
||||
translation of service names to port numbers.
|
||||
translation of service names to port numbers
|
||||
.It Pa /var/run/inetd.pid
|
||||
the pid of the currently running
|
||||
.Nm inetd .
|
||||
.Nm
|
||||
.El
|
||||
.Sh "EXAMPLES"
|
||||
.Pp
|
||||
|
@ -408,7 +408,7 @@ main(argc, argv, envp)
|
||||
exit(EX_OSERR);
|
||||
}
|
||||
if (debug)
|
||||
warnx("Handling signal flag %c", c);
|
||||
warnx("handling signal flag %c", c);
|
||||
switch(c) {
|
||||
case 'A': /* sigalrm */
|
||||
retry();
|
||||
@ -576,7 +576,7 @@ main(argc, argv, envp)
|
||||
dup2(0, 2);
|
||||
if ((pwd = getpwnam(sep->se_user)) == NULL) {
|
||||
syslog(LOG_ERR,
|
||||
"%s/%s: %s: No such user",
|
||||
"%s/%s: %s: no such user",
|
||||
sep->se_service, sep->se_proto,
|
||||
sep->se_user);
|
||||
if (sep->se_socktype != SOCK_STREAM)
|
||||
@ -588,7 +588,7 @@ main(argc, argv, envp)
|
||||
&& (grp = getgrnam(sep->se_group)) == NULL
|
||||
) {
|
||||
syslog(LOG_ERR,
|
||||
"%s/%s: %s: No such group",
|
||||
"%s/%s: %s: no such group",
|
||||
sep->se_service, sep->se_proto,
|
||||
sep->se_group);
|
||||
if (sep->se_socktype != SOCK_STREAM)
|
||||
@ -762,13 +762,13 @@ void config()
|
||||
while ((new = getconfigent())) {
|
||||
if (getpwnam(new->se_user) == NULL) {
|
||||
syslog(LOG_ERR,
|
||||
"%s/%s: No such user '%s', service ignored",
|
||||
"%s/%s: no such user '%s', service ignored",
|
||||
new->se_service, new->se_proto, new->se_user);
|
||||
continue;
|
||||
}
|
||||
if (new->se_group && getgrnam(new->se_group) == NULL) {
|
||||
syslog(LOG_ERR,
|
||||
"%s/%s: No such group '%s', service ignored",
|
||||
"%s/%s: no such group '%s', service ignored",
|
||||
new->se_service, new->se_proto, new->se_group);
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user