summaryrefslogtreecommitdiff
path: root/cipher/rndunix.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/rndunix.c')
-rw-r--r--cipher/rndunix.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/cipher/rndunix.c b/cipher/rndunix.c
index 4f0f79ee..0524ca8c 100644
--- a/cipher/rndunix.c
+++ b/cipher/rndunix.c
@@ -486,11 +486,12 @@ my_pclose(struct RI *entry)
if (fclose(entry->pipe))
return (-1);
- /* We ignore the return value from the process because some programs
- * return funny values which would result in the input being discarded
- * even if they executed successfully. This isn't a problem because the
- * result data size threshold will filter out any programs which exit
- * with a usage message without producing useful output */
+ /* We ignore the return value from the process because some
+ programs return funny values which would result in the input
+ being discarded even if they executed successfully. This isn't
+ a problem because the result data size threshold will filter
+ out any programs which exit with a usage message without
+ producing useful output. */
if (waitpid(entry->pid, NULL, 0) != entry->pid)
status = -1;