Tweak error output.
authorgsoares <gsoares@openbsd.org>
Thu, 16 Apr 2015 15:14:30 +0000 (15:14 +0000)
committergsoares <gsoares@openbsd.org>
Thu, 16 Apr 2015 15:14:30 +0000 (15:14 +0000)
ok krw@

sbin/dhclient/dhclient.c
sbin/dhclient/dispatch.c

index 026f53d..d280bac 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dhclient.c,v 1.359 2015/02/15 01:56:42 tedu Exp $     */
+/*     $OpenBSD: dhclient.c,v 1.360 2015/04/16 15:14:30 gsoares Exp $  */
 
 /*
  * Copyright 2004 Henning Brauer <henning@openbsd.org>
@@ -467,7 +467,7 @@ main(int argc, char *argv[])
        get_ifname(argv[0]);
        ifi->index = if_nametoindex(ifi->name);
        if (ifi->index == 0)
-               error("'%s' is not an interface", ifi->name);
+               error("%s: no such interface", ifi->name);
 
        tzset();
 
index 2a4aff3..2cb7cc9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: dispatch.c,v 1.100 2015/02/06 04:18:20 krw Exp $      */
+/*     $OpenBSD: dispatch.c,v 1.101 2015/04/16 15:14:31 gsoares Exp $  */
 
 /*
  * Copyright 2004 Henning Brauer <henning@openbsd.org>
@@ -88,7 +88,7 @@ get_hw_address(void)
        }
 
        if (!found)
-               error("%s: not found", ifi->name);
+               error("%s: no such interface", ifi->name);
 
        freeifaddrs(ifap);
 }