mirror of
https://github.com/sheumann/hush.git
synced 2024-12-22 14:30:31 +00:00
xgethostbyname: more readable
This commit is contained in:
parent
7ca3921e5e
commit
5e618ff439
@ -10,13 +10,10 @@
|
|||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include "libbb.h"
|
#include "libbb.h"
|
||||||
|
|
||||||
|
|
||||||
struct hostent *xgethostbyname(const char *name)
|
struct hostent *xgethostbyname(const char *name)
|
||||||
{
|
{
|
||||||
struct hostent *retval;
|
struct hostent *retval = gethostbyname(name);
|
||||||
|
if (!retval)
|
||||||
if ((retval = gethostbyname(name)) == NULL)
|
|
||||||
bb_herror_msg_and_die("%s", name);
|
bb_herror_msg_and_die("%s", name);
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user