summaryrefslogtreecommitdiff
path: root/usr.bin/uniq
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1999-12-10 13:06:53 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1999-12-10 13:06:53 +0000
commit579f26f4a8648be75c7f8b4cbccae9df19210b47 (patch)
tree6f023b027994c799fe4b09ff79340c3188fac930 /usr.bin/uniq
parentaf3a75ec0de0f550cc5f8296fcde6cf4da99cec5 (diff)
downloadsrc-test2-579f26f4a8648be75c7f8b4cbccae9df19210b47.tar.gz
src-test2-579f26f4a8648be75c7f8b4cbccae9df19210b47.zip
Notes
Diffstat (limited to 'usr.bin/uniq')
-rw-r--r--usr.bin/uniq/uniq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c
index 9451dfe2b176..07e25a07c9cf 100644
--- a/usr.bin/uniq/uniq.c
+++ b/usr.bin/uniq/uniq.c
@@ -275,5 +275,5 @@ stricoll(s1, s2)
for (p = line2; *s2; s2++)
*p++ = tolower((unsigned char)*s2);
*p = '\0';
- return strcoll(s1, s2);
+ return strcoll(line1, line2);
}