Minor cleanups from NetBSD-current.

Obtained from: NetBSD
This commit is contained in:
Paul Traina 1996-01-23 00:57:19 +00:00
parent f92a999ac6
commit ee3ee9eeaa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/cvs2svn/branches/MC/; revision=13569
2 changed files with 2 additions and 4 deletions

View File

@ -59,7 +59,7 @@ dumptab(filename)
int n;
struct host *hp;
FILE *fp;
long t;
time_t t;
/* Print symbols in alphabetical order for reader's convenience. */
static char legend[] = "#\n# Legend:\t(see bootptab.5)\n\
#\tfirst field -- hostname (not indented)\n\

View File

@ -39,9 +39,7 @@ main(argc, argv)
dap = NULL;
if (argc > 1) {
dap = &dst_addr;
if (isdigit(argv[1][0]))
dst_addr.s_addr = inet_addr(argv[1]);
else {
if (inet_aton(argv[1], &dst_addr) == 0) {
hep = gethostbyname(argv[1]);
if (!hep) {
printf("gethostbyname(%s)\n", argv[1]);