1
0
mirror of https://github.com/sheumann/hush.git synced 2025-01-20 05:30:25 +00:00

Fix needless difference vs GNU

This commit is contained in:
Eric Andersen 2002-10-18 22:13:23 +00:00
parent 1977a60de4
commit d69e31fb93

@ -1,6 +1,6 @@
/* vi: set sw=4 ts=4: */ /* vi: set sw=4 ts=4: */
/* /*
* $Id: hostname.c,v 1.32 2001/10/31 09:59:57 andersen Exp $ * $Id: hostname.c,v 1.33 2002/10/18 22:13:23 andersen Exp $
* Mini hostname implementation for busybox * Mini hostname implementation for busybox
* *
* Copyright (C) 1999 by Randolph Chung <tausq@debian.org> * Copyright (C) 1999 by Randolph Chung <tausq@debian.org>
@ -106,7 +106,7 @@ int hostname_main(int argc, char **argv)
} }
puts(buf); puts(buf);
} else if (type == 'd') { } else if (type == 'd') {
puts(p ? p + 1 : ""); if (p) puts(p + 1);
} else if (type == 'i') { } else if (type == 'i') {
while (hp->h_addr_list[0]) { while (hp->h_addr_list[0]) {
printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++))); printf("%s ", inet_ntoa(*(struct in_addr *) (*hp->h_addr_list++)));