From 59df6f73988b103f0dcfffeaec10642527336c5e Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Wed, 16 May 2001 14:21:09 +0000 Subject: Change 'printf("%s\n", ...)' into 'puts(...)'. Noted and patched in hostname.c by Larry Doolittle. --- networking/hostname.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'networking/hostname.c') diff --git a/networking/hostname.c b/networking/hostname.c index a6e001d54..f4118ea36 100644 --- a/networking/hostname.c +++ b/networking/hostname.c @@ -1,6 +1,6 @@ /* vi: set sw=4 ts=4: */ /* - * $Id: hostname.c,v 1.26 2001/03/09 21:24:12 andersen Exp $ + * $Id: hostname.c,v 1.27 2001/05/16 14:21:09 kraai Exp $ * Mini hostname implementation for busybox * * Copyright (C) 1999 by Randolph Chung @@ -112,19 +112,19 @@ int hostname_main(int argc, char **argv) if (!s) s = buf; *s = 0; - printf("%s\n", buf); + puts(buf); } else if (opt_domain) { s = strchr(buf, '.'); - printf("%s\n", (s ? s + 1 : "")); + puts(s ? s + 1 : ""); } else if (opt_ip) { h = gethostbyname(buf); if (!h) { printf("Host not found\n"); exit(1); } - printf("%s\n", inet_ntoa(*(struct in_addr *) (h->h_addr))); + puts(inet_ntoa(*(struct in_addr *) (h->h_addr))); } else { - printf("%s\n", buf); + puts(buf); } } return(0); -- cgit v1.2.3