aboutsummaryrefslogtreecommitdiffstats
path: root/man3
diff options
context:
space:
mode:
authorBjarni Ingi Gislason <bjarniig@rhi.hi.is>2020-06-12 19:57:42 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-06-15 15:57:30 +0200
commitbe1db87e414e3546ee1cd7bb442e4bb24fb82e39 (patch)
treea25b3a0cfad4850bb1d8061bea62f2d852d2dd4c /man3
parent0e0984fc380ac8f39872e3fe41f63534efdbb0f3 (diff)
downloadman-pages-be1db87e414e3546ee1cd7bb442e4bb24fb82e39.tar.gz
Various pages: srcfix: trim a trailing space
Output is from: test-groff -b -e -mandoc -T utf8 -rF0 -t -w w -z [ "test-groff" is a developmental version of "groff" ] There is no change in the output of "nroff" and "groff". #### troff: <fts.3>:50: warning: trailing space #### troff: <getgrnam.3>:175: warning: trailing space #### troff: <getpwnam.3>:181: warning: trailing space #### troff: <rcmd.3>:52: warning: trailing space troff: <rcmd.3>:57: warning: trailing space troff: <rcmd.3>:60: warning: trailing space troff: <rcmd.3>:63: warning: trailing space troff: <rcmd.3>:69: warning: trailing space troff: <rcmd.3>:73: warning: trailing space #### troff: <rexec.3>:48: warning: trailing space troff: <rexec.3>:51: warning: trailing space #### troff: <sem_open.3>:36: warning: trailing space Signed-off-by: Bjarni Ingi Gislason <bjarniig@rhi.hi.is> Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man3')
-rw-r--r--man3/fts.32
-rw-r--r--man3/getgrnam.32
-rw-r--r--man3/getpwnam.32
-rw-r--r--man3/rcmd.312
-rw-r--r--man3/rexec.34
-rw-r--r--man3/sem_open.32
6 files changed, 12 insertions, 12 deletions
diff --git a/man3/fts.3 b/man3/fts.3
index 959a29c82b..374f87158c 100644
--- a/man3/fts.3
+++ b/man3/fts.3
@@ -47,7 +47,7 @@ traverse a file hierarchy
.B #include <sys/stat.h>
.B #include <fts.h>
.PP
-.BI "FTS *fts_open(char * const *" path_argv ", int " options ", "
+.BI "FTS *fts_open(char * const *" path_argv ", int " options ,
.BI " int (*" compar ")(const FTSENT **, const FTSENT **));"
.PP
.BI "FTSENT *fts_read(FTS *" ftsp );
diff --git a/man3/getgrnam.3 b/man3/getgrnam.3
index aa25864d02..970b806934 100644
--- a/man3/getgrnam.3
+++ b/man3/getgrnam.3
@@ -172,7 +172,7 @@ In case of error, an error number is returned, and NULL is stored in
.IR *result .
.SH ERRORS
.TP
-.BR 0 " or " ENOENT " or " ESRCH " or " EBADF " or " EPERM " or ... "
+.BR 0 " or " ENOENT " or " ESRCH " or " EBADF " or " EPERM " or ..."
The given
.I name
or
diff --git a/man3/getpwnam.3 b/man3/getpwnam.3
index adaf1abf24..b383c0c18a 100644
--- a/man3/getpwnam.3
+++ b/man3/getpwnam.3
@@ -178,7 +178,7 @@ In case of error, an error number is returned, and NULL is stored in
.IR *result .
.SH ERRORS
.TP
-.BR 0 " or " ENOENT " or " ESRCH " or " EBADF " or " EPERM " or ... "
+.BR 0 " or " ENOENT " or " ESRCH " or " EBADF " or " EPERM " or ..."
The given
.I name
or
diff --git a/man3/rcmd.3 b/man3/rcmd.3
index eed86c853a..6a22102f46 100644
--- a/man3/rcmd.3
+++ b/man3/rcmd.3
@@ -49,28 +49,28 @@ stream to a remote command
.nf
.B #include <netdb.h> \ \ \fP/* Or <unistd.h> on some systems */
.PP
-.BI "int rcmd(char **" ahost ", unsigned short " inport ", const char *" locuser ", "
+.BI "int rcmd(char **" ahost ", unsigned short " inport ", const char *" locuser ,
.BI " const char *" remuser ", const char *" cmd ", int *" fd2p );
.PP
.BI "int rresvport(int *" port );
.PP
-.BI "int iruserok(uint32_t " raddr ", int " superuser ", "
+.BI "int iruserok(uint32_t " raddr ", int " superuser ,
.BI " const char *" ruser ", const char *" luser );
.PP
-.BI "int ruserok(const char *" rhost ", int " superuser ", "
+.BI "int ruserok(const char *" rhost ", int " superuser ,
.BI " const char *" ruser ", const char *" luser );
.PP
-.BI "int rcmd_af(char **" ahost ", unsigned short " inport ", const char *" locuser ", "
+.BI "int rcmd_af(char **" ahost ", unsigned short " inport ", const char *" locuser ,
.BI " const char *" remuser ", const char *" cmd ", int *" fd2p ,
.BI " sa_family_t " af );
.PP
.BI "int rresvport_af(int *" port ", sa_family_t " af );
.PP
-.BI "int iruserok_af(const void *" raddr ", int " superuser ", "
+.BI "int iruserok_af(const void *" raddr ", int " superuser ,
.BI " const char *" ruser ", const char *" luser \
", sa_family_t " af );
.PP
-.BI "int ruserok_af(const char *" rhost ", int " superuser ", "
+.BI "int ruserok_af(const char *" rhost ", int " superuser ,
.BI " const char *" ruser ", const char *" luser \
", sa_family_t " af );
.fi
diff --git a/man3/rexec.3 b/man3/rexec.3
index 2b8e5c57ad..4a3d3968c4 100644
--- a/man3/rexec.3
+++ b/man3/rexec.3
@@ -45,10 +45,10 @@ rexec, rexec_af \- return stream to a remote command
.nf
.B #include <netdb.h>
.PP
-.BI "int rexec(char **" ahost ", int " inport ", const char *" user ", "
+.BI "int rexec(char **" ahost ", int " inport ", const char *" user ,
.BI " const char *" passwd ", const char *" cmd ", int *" fd2p );
.PP
-.BI "int rexec_af(char **" ahost ", int " inport ", const char *" user ", "
+.BI "int rexec_af(char **" ahost ", int " inport ", const char *" user ,
.BI " const char *" passwd ", const char *" cmd ", int *" fd2p ,
.BI " sa_family_t " af );
.fi
diff --git a/man3/sem_open.3 b/man3/sem_open.3
index a5c716591f..62e004919e 100644
--- a/man3/sem_open.3
+++ b/man3/sem_open.3
@@ -33,7 +33,7 @@ sem_open \- initialize and open a named semaphore
.B #include <semaphore.h>
.PP
.BI "sem_t *sem_open(const char *" name ", int " oflag );
-.BI "sem_t *sem_open(const char *" name ", int " oflag ", "
+.BI "sem_t *sem_open(const char *" name ", int " oflag ,
.BI " mode_t " mode ", unsigned int " value );
.fi
.PP