aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorBill Paul <wpaul@FreeBSD.org>1996-08-04 19:17:15 +0000
committerBill Paul <wpaul@FreeBSD.org>1996-08-04 19:17:15 +0000
commit09cd72056a504e1dc547437b3d4a183dddf71937 (patch)
tree227b179a421412f929471083aa03bf1585c9642a /libexec
parent93d20d6e7f8acb823160f59529edd0fd3a3b2edf (diff)
downloadsrc-09cd72056a504e1dc547437b3d4a183dddf71937.tar.gz
src-09cd72056a504e1dc547437b3d4a183dddf71937.zip
Use err() instead of perror()/exit() and remember to #include <errno.h>
and <err.h>.
Notes
Notes: svn path=/head/; revision=17424
Diffstat (limited to 'libexec')
-rw-r--r--libexec/revnetgroup/revnetgroup.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libexec/revnetgroup/revnetgroup.c b/libexec/revnetgroup/revnetgroup.c
index e92f3c063a72..70c0a2c4b09b 100644
--- a/libexec/revnetgroup/revnetgroup.c
+++ b/libexec/revnetgroup/revnetgroup.c
@@ -35,16 +35,18 @@
* Center for Telecommunications Research
* Columbia University, New York City
*
- * $Id: revnetgroup.c,v 1.1.1.1 1995/10/26 16:25:29 wpaul Exp $
+ * $Id: revnetgroup.c,v 1.2 1996/05/12 17:17:45 wpaul Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <errno.h>
+#include <err.h>
#include "hash.h"
#ifndef lint
-static const char rcsid[] = "$Id$";
+static const char rcsid[] = "$Id: revnetgroup.c,v 1.2 1996/05/12 17:17:45 wpaul Exp $";
#endif
#define LINSIZ 1024
@@ -120,8 +122,7 @@ main(argc, argv)
if (strcmp(netgroup, "-")) {
if ((fp = fopen(netgroup, "r")) == NULL) {
- perror(netgroup);
- exit(1);
+ err(1,netgroup);
}
} else {
fp = stdin;