Module Name:    src
Committed By:   yamt
Date:           Tue Jul 26 12:21:28 UTC 2011

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

Log Message:
remove a duplicated "unknown option" message.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/usr.bin/tpfmt/tpfmt.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/tpfmt/tpfmt.c
diff -u src/usr.bin/tpfmt/tpfmt.c:1.3 src/usr.bin/tpfmt/tpfmt.c:1.4
--- src/usr.bin/tpfmt/tpfmt.c:1.3	Thu Apr 14 16:27:17 2011
+++ src/usr.bin/tpfmt/tpfmt.c	Tue Jul 26 12:21:27 2011
@@ -1,7 +1,7 @@
-/*	$NetBSD: tpfmt.c,v 1.3 2011/04/14 16:27:17 yamt Exp $	*/
+/*	$NetBSD: tpfmt.c,v 1.4 2011/07/26 12:21:27 yamt Exp $	*/
 
 /*-
- * Copyright (c) 2010 YAMAMOTO Takashi,
+ * Copyright (c) 2010,2011 YAMAMOTO Takashi,
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: tpfmt.c,v 1.3 2011/04/14 16:27:17 yamt Exp $");
+__RCSID("$NetBSD: tpfmt.c,v 1.4 2011/07/26 12:21:27 yamt Exp $");
 #endif /* not lint */
 
 #include <sys/rbtree.h>
@@ -171,7 +171,7 @@
 			distinguish_processes = false;
 			break;
 		default:
-			errx(EXIT_FAILURE, "unknown option %c", ch);
+			exit(EXIT_FAILURE);
 		}
 	}
 	argc -= optind;

Reply via email to