Major coreutils update.

This commit is contained in:
Manuel Novoa III
2003-03-19 09:13:01 +00:00
parent e01f9662a5
commit cad5364599
295 changed files with 6944 additions and 5570 deletions

View File

@@ -30,7 +30,7 @@ struct hostent *xgethostbyname2(const char *name, int af)
struct hostent *retval;
if ((retval = gethostbyname2(name, af)) == NULL)
herror_msg_and_die("%s", name);
bb_herror_msg_and_die("%s", name);
return retval;
}