diff options
| author | Mike Pritchard <mpp@FreeBSD.org> | 1996-01-10 10:41:47 +0000 |
|---|---|---|
| committer | Mike Pritchard <mpp@FreeBSD.org> | 1996-01-10 10:41:47 +0000 |
| commit | 78f03ca72962d992dda7bcf90e47818c69d61276 (patch) | |
| tree | 2f58faea0b754ce16b8ce738e9c93834e3ecb127 /gnu/usr.bin/diff | |
| parent | bb91094a48cd7c988451b1443c27e8c9fa414e6e (diff) | |
Notes
Diffstat (limited to 'gnu/usr.bin/diff')
| -rw-r--r-- | gnu/usr.bin/diff/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/diff/util.c b/gnu/usr.bin/diff/util.c index bbc3bff91a4b..4cdb9ea51edb 100644 --- a/gnu/usr.bin/diff/util.c +++ b/gnu/usr.bin/diff/util.c @@ -20,7 +20,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "diff.h" #ifndef PR_PROGRAM -#define PR_PROGRAM "/bin/pr" +#define PR_PROGRAM "/usr/bin/pr" #endif /* Queue up one-line messages to be printed at the end, @@ -208,7 +208,7 @@ begin_output () close (pipes[0]); } - execl (PR_PROGRAM, PR_PROGRAM, "-f", "-h", name, 0); + execl (PR_PROGRAM, PR_PROGRAM, "-F", "-h", name, 0); pfatal_with_name (PR_PROGRAM); } else @@ -222,7 +222,7 @@ begin_output () char *command = xmalloc (4 * strlen (name) + strlen (PR_PROGRAM) + 10); char *p; char const *a = name; - sprintf (command, "%s -f -h ", PR_PROGRAM); + sprintf (command, "%s -F -h ", PR_PROGRAM); p = command + strlen (command); SYSTEM_QUOTE_ARG (p, a); *p = 0; |
