X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/3d251965606d6a6e47897504594f84d12e3e292a..6b74eb547bce7c4436fc366073321b2f480c30da:/mts/sendmail/hosts.c diff --git a/mts/sendmail/hosts.c b/mts/sendmail/hosts.c index 0bc7532f..83727d54 100644 --- a/mts/sendmail/hosts.c +++ b/mts/sendmail/hosts.c @@ -57,12 +57,13 @@ OfficialName (char *name) } if (hosts.h_name || init_hs ()) { for (h = hosts.h_next; h; h = h->h_next) - if (!strcasecmp (h->h_name, q)) + if (!strcasecmp (h->h_name, q)) { return h->h_name; - else + } else { for (r = h->h_aliases; *r; r++) if (!strcasecmp (*r, q)) return h->h_name; + } } strncpy (buffer, site, sizeof(buffer));