summaryrefslogtreecommitdiff
path: root/usr.bin/sort
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 22:57:59 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-14 22:57:59 +0000
commit733dabfe9576aa7006d97fa98286a0074d146147 (patch)
tree5652767ddf1ad724c65658fd5a6779be95f8a73b /usr.bin/sort
parent6e2b41a7490cb933d8053d5f94e75d8c17320db3 (diff)
match foo[] between files, instead of foo[] in one, and *foo in another
Diffstat (limited to 'usr.bin/sort')
-rw-r--r--usr.bin/sort/fsort.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/sort/fsort.c b/usr.bin/sort/fsort.c
index 7a3af24ec9f..5baf3a0f94b 100644
--- a/usr.bin/sort/fsort.c
+++ b/usr.bin/sort/fsort.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fsort.c,v 1.11 2004/07/20 03:50:27 deraadt Exp $ */
+/* $OpenBSD: fsort.c,v 1.12 2004/09/14 22:57:58 deraadt Exp $ */
/*-
* Copyright (c) 1993
@@ -36,7 +36,7 @@
#if 0
static char sccsid[] = "@(#)fsort.c 8.1 (Berkeley) 6/6/93";
#else
-static char rcsid[] = "$OpenBSD: fsort.c,v 1.11 2004/07/20 03:50:27 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: fsort.c,v 1.12 2004/09/14 22:57:58 deraadt Exp $";
#endif
#endif /* not lint */
@@ -56,7 +56,7 @@ static char rcsid[] = "$OpenBSD: fsort.c,v 1.11 2004/07/20 03:50:27 deraadt Exp
u_char **keylist = 0, *buffer = 0, *linebuf = 0;
size_t bufsize, linebuf_size;
struct tempfile fstack[MAXFCT];
-extern char *toutpath;
+extern char toutpath[];
#define FSORTMAX 4
int PANIC = FSORTMAX;