Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/gzip Fix previous
details: https://anonhg.NetBSD.org/src/rev/3ce8ddbe662d
branches: trunk
changeset: 445401:3ce8ddbe662d
user: skrll <skrll%NetBSD.org@localhost>
date: Sat Oct 27 11:39:12 2018 +0000
description:
Fix previous
diffstat:
usr.bin/gzip/gzip.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r 865d25ccad6c -r 3ce8ddbe662d usr.bin/gzip/gzip.c
--- a/usr.bin/gzip/gzip.c Sat Oct 27 09:13:45 2018 +0000
+++ b/usr.bin/gzip/gzip.c Sat Oct 27 11:39:12 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: gzip.c,v 1.115 2018/10/26 22:10:15 christos Exp $ */
+/* $NetBSD: gzip.c,v 1.116 2018/10/27 11:39:12 skrll Exp $ */
/*
* Copyright (c) 1997, 1998, 2003, 2004, 2006, 2008, 2009, 2010, 2011, 2015, 2017
@@ -31,7 +31,7 @@
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1997, 1998, 2003, 2004, 2006, 2008,\
2009, 2010, 2011, 2015, 2017 Matthew R. Green. All rights reserved.");
-__RCSID("$NetBSD: gzip.c,v 1.115 2018/10/26 22:10:15 christos Exp $");
+__RCSID("$NetBSD: gzip.c,v 1.116 2018/10/27 11:39:12 skrll Exp $");
#endif /* not lint */
/*
@@ -1156,8 +1156,8 @@
#ifndef NO_LZ_SUPPORT
if (memcmp(buf, LZ_MAGIC, 4) == 0)
return FT_LZ;
+ else
#endif
- else
return FT_UNKNOWN;
}
Home |
Main Index |
Thread Index |
Old Index