diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-09 18:56:11 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-09 18:56:11 +0000 |
commit | fded6f6bd811efc6413e9533cf3d6b05431b0ac2 (patch) | |
tree | 94e7c44bef626ff4c1a7f167028f0b1c24bc8954 /usr.bin/diff/diff.h | |
parent | 877d6b209818d669ea266633e357c362f1ee9311 (diff) |
If the -L option is specified twice, use it for the second filename
like GNU diff does. Adapted from a diff by YAMAMOTO Takashi
Diffstat (limited to 'usr.bin/diff/diff.h')
-rw-r--r-- | usr.bin/diff/diff.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/diff/diff.h b/usr.bin/diff/diff.h index 8d5e70813dd..817057d8ca6 100644 --- a/usr.bin/diff/diff.h +++ b/usr.bin/diff/diff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.h,v 1.28 2004/06/20 18:47:45 otto Exp $ */ +/* $OpenBSD: diff.h,v 1.29 2004/12/09 18:56:10 millert Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -76,7 +76,7 @@ struct excludes { extern int aflag, bflag, dflag, iflag, lflag, Nflag, Pflag, pflag, rflag, sflag, tflag, Tflag, wflag; extern int format, context, status; -extern char *start, *ifdefname, *diffargs, *label, *ignore_pats; +extern char *start, *ifdefname, *diffargs, *label[2], *ignore_pats; extern struct stat stb1, stb2; extern struct excludes *excludes_list; extern regex_t ignore_re; |