Module Name:    src
Committed By:   tsutsui
Date:           Wed Mar 23 12:59:44 UTC 2011

Modified Files:
        src/usr.bin/gzip: gzip.c

Log Message:
Fix OPT_LIST. -t is not available in SMALL case.


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/usr.bin/gzip/gzip.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/gzip/gzip.c
diff -u src/usr.bin/gzip/gzip.c:1.98 src/usr.bin/gzip/gzip.c:1.99
--- src/usr.bin/gzip/gzip.c:1.98	Sat Nov  6 21:42:32 2010
+++ src/usr.bin/gzip/gzip.c	Wed Mar 23 12:59:44 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: gzip.c,v 1.98 2010/11/06 21:42:32 mrg Exp $	*/
+/*	$NetBSD: gzip.c,v 1.99 2011/03/23 12:59:44 tsutsui Exp $	*/
 
 /*
  * Copyright (c) 1997, 1998, 2003, 2004, 2006 Matthew R. Green
@@ -30,7 +30,7 @@
 #ifndef lint
 __COPYRIGHT("@(#) Copyright (c) 1997, 1998, 2003, 2004, 2006\
  Matthew R. Green.  All rights reserved.");
-__RCSID("$NetBSD: gzip.c,v 1.98 2010/11/06 21:42:32 mrg Exp $");
+__RCSID("$NetBSD: gzip.c,v 1.99 2011/03/23 12:59:44 tsutsui Exp $");
 #endif /* not lint */
 
 /*
@@ -291,7 +291,7 @@
 		dflag = cflag = 1;
 
 #ifdef SMALL
-#define OPT_LIST "123456789cdhltV"
+#define OPT_LIST "123456789cdhlV"
 #else
 #define OPT_LIST "123456789cdfhklNnqrS:tVv"
 #endif

Reply via email to