diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-03-09 23:06:15 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-03-09 23:06:15 +0000 |
commit | fa45f22e5099e093d09ea41144b76ef1a6464bfd (patch) | |
tree | 0596e35e5493fbe5ab0a34db152e5da3a591d38f /networking/ifconfig.c | |
parent | d92168486bd9008b2ecd33a6b3b569b54cbe1da0 (diff) |
Use perror_msg_and_die function where appropriate.
Diffstat (limited to 'networking/ifconfig.c')
-rw-r--r-- | networking/ifconfig.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/networking/ifconfig.c b/networking/ifconfig.c index f342ceede..daf189458 100644 --- a/networking/ifconfig.c +++ b/networking/ifconfig.c @@ -15,7 +15,7 @@ * Foundation; either version 2 of the License, or (at * your option) any later version. * - * $Id: ifconfig.c,v 1.5 2001/03/08 22:57:00 mjn3 Exp $ + * $Id: ifconfig.c,v 1.6 2001/03/09 23:06:15 mjn3 Exp $ * */ @@ -271,8 +271,7 @@ int ifconfig_main(int argc, char **argv) /* Create a channel to the NET kernel. */ if ((sockfd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) { - perror("socket"); - exit(1); + perror_msg_and_die("socket"); } /* skip argv[0] */ |