From 6b2c23d847a0942e6dcc5735a5a5512ab1432d28 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 23 Mar 2001 17:10:19 +0000 Subject: xstrdup tftp cleanup from Jeff Garzik --- networking/tftp.c | 9 ++++----- tftp.c | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/networking/tftp.c b/networking/tftp.c index e4e01b9a2..309df36b3 100644 --- a/networking/tftp.c +++ b/networking/tftp.c @@ -387,12 +387,11 @@ int tftp_main(int argc, char **argv) serverfile = cp + 1; - if ((s = strdup(serverstr))) { - s[cp - serverstr] = '\0'; + s = xstrdup(serverstr); + s[cp - serverstr] = '\0'; - if ((host = gethostbyname(s))) { - bad = 0; - } + if ((host = gethostbyname(s))) { + bad = 0; } free(s); diff --git a/tftp.c b/tftp.c index e4e01b9a2..309df36b3 100644 --- a/tftp.c +++ b/tftp.c @@ -387,12 +387,11 @@ int tftp_main(int argc, char **argv) serverfile = cp + 1; - if ((s = strdup(serverstr))) { - s[cp - serverstr] = '\0'; + s = xstrdup(serverstr); + s[cp - serverstr] = '\0'; - if ((host = gethostbyname(s))) { - bad = 0; - } + if ((host = gethostbyname(s))) { + bad = 0; } free(s); -- cgit v1.2.3