diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/tftp.c | 9 |
1 files changed, 4 insertions, 5 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); |