From 89b01be26907d5a1948344d5f04bb48dc0723da8 Mon Sep 17 00:00:00 2001 From: dholland Date: Sat, 29 Mar 2014 19:01:00 +0000 Subject: simplify silly logic --- hunt/huntd/get_names.c | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) (limited to 'hunt') diff --git a/hunt/huntd/get_names.c b/hunt/huntd/get_names.c index 89601386..ad02d71a 100644 --- a/hunt/huntd/get_names.c +++ b/hunt/huntd/get_names.c @@ -1,4 +1,4 @@ -/* $NetBSD: get_names.c,v 1.11 2014/03/28 17:49:11 apb Exp $ */ +/* $NetBSD: get_names.c,v 1.12 2014/03/29 19:01:00 dholland Exp $ */ /* * Copyright (c) 1983-2003, Regents of the University of California. * All rights reserved. @@ -32,7 +32,7 @@ #include #ifndef lint -__RCSID("$NetBSD: get_names.c,v 1.11 2014/03/28 17:49:11 apb Exp $"); +__RCSID("$NetBSD: get_names.c,v 1.12 2014/03/29 19:01:00 dholland Exp $"); #endif /* not lint */ #include "bsd.h" @@ -126,6 +126,7 @@ get_remote_name(char *his_address) /* this is a local to local talk */ his_name = his_address; his_machine_name = my_machine_name; + his_machine_addr = my_machine_addr; } else { if (*ptr == '@') { /* user@host */ @@ -137,23 +138,19 @@ get_remote_name(char *his_address) his_machine_name = his_address; } *ptr = '\0'; - } - /* Load these useful values into the standard message header */ - (void) strncpy(msg.r_name, his_name, NAME_SIZE); - msg.r_name[NAME_SIZE - 1] = '\0'; - /* if he is on the same machine, then simply copy */ - if (memcmp(&his_machine_name, &my_machine_name, - sizeof(his_machine_name)) == 0) - memcpy(&his_machine_addr, &my_machine_addr, - sizeof(his_machine_addr)); - else { /* look up the address of the recipient's machine */ hp = gethostbyname(his_machine_name); - if (hp == (struct hostent *) 0) - return 0; /* unknown host */ + if (hp == NULL) { + /* unknown host */ + return 0; + } memcpy(&his_machine_addr, hp->h_addr, hp->h_length); } + /* Load these useful values into the standard message header */ + (void) strncpy(msg.r_name, his_name, NAME_SIZE); + msg.r_name[NAME_SIZE - 1] = '\0'; + return 1; } #endif -- cgit v1.2.3-56-ge451