summaryrefslogtreecommitdiff
path: root/sbin/dhclient/dhclient.c
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2005-02-06 17:10:14 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2005-02-06 17:10:14 +0000
commitc1f5544c6142bc4c0a8dc9a00f852201661f9c1f (patch)
treeca6706b307ac0823f5508332b9059f8a1b0f6197 /sbin/dhclient/dhclient.c
parentfc3407ddcf245d950fc7ed68159373bbce4ca557 (diff)
"no link .got link" => "no link .... got link". i.e. always display
complete ellipsis ('...') and a following space. ok beck@
Diffstat (limited to 'sbin/dhclient/dhclient.c')
-rw-r--r--sbin/dhclient/dhclient.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/dhclient/dhclient.c b/sbin/dhclient/dhclient.c
index ddcecf7f6af..ef353c43724 100644
--- a/sbin/dhclient/dhclient.c
+++ b/sbin/dhclient/dhclient.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhclient.c,v 1.62 2004/12/05 18:35:51 deraadt Exp $ */
+/* $OpenBSD: dhclient.c,v 1.63 2005/02/06 17:10:13 krw Exp $ */
/*
* Copyright 2004 Henning Brauer <henning@openbsd.org>
@@ -312,7 +312,7 @@ main(int argc, char *argv[])
read_client_conf();
if (!interface_link_status(ifi->name)) {
- fprintf(stderr, "%s: no link ", ifi->name);
+ fprintf(stderr, "%s: no link ...", ifi->name);
fflush(stderr);
sleep(1);
while (!interface_link_status(ifi->name)) {
@@ -324,7 +324,7 @@ main(int argc, char *argv[])
}
sleep(1);
}
- fprintf(stderr, "got link\n");
+ fprintf(stderr, " got link\n");
}
if ((nullfd = open(_PATH_DEVNULL, O_RDWR, 0)) == -1)