Fixes so "make allnoconfig" works again.
[oweals/busybox.git] / libbb / xgethostbyname.c
index b7197970182266e58a50fa42c5bf9752f47fe735..6b2dff7113a43c54f1892bcfa5e4b28be4d517b2 100644 (file)
@@ -29,7 +29,7 @@ struct hostent *xgethostbyname(const char *name)
        struct hostent *retval;
 
        if ((retval = gethostbyname(name)) == NULL)
-               herror_msg_and_die("%s", name);
+               bb_herror_msg_and_die("%s", name);
 
        return retval;
 }