diff options
| author | Paul Richards <paul@FreeBSD.org> | 1995-03-09 19:56:23 +0000 |
|---|---|---|
| committer | Paul Richards <paul@FreeBSD.org> | 1995-03-09 19:56:23 +0000 |
| commit | 0d09ae111145c7d3e9b3e525c78c19427442da8e (patch) | |
| tree | 9c4973508c031e6d8f6ee3ba17881f0fec2c5c47 | |
| parent | b76cc0f8310d89cf8ff55cfa695f65ee4bf6874b (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/man/lib/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/man/lib/util.c b/gnu/usr.bin/man/lib/util.c index e8253a8a993f..e12419afda5e 100644 --- a/gnu/usr.bin/man/lib/util.c +++ b/gnu/usr.bin/man/lib/util.c @@ -139,7 +139,7 @@ do_system_command (command) status = system (command); if (WIFSIGNALED(status)) - return 0; + return -1; else if (WEXITSTATUS(status)) { gripe_system_command (status); return 0; |
