git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5250 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1998-11-25 09:41:10 +00:00
parent bac1d08e83
commit d0fd153c88

View File

@@ -545,11 +545,11 @@ get_pobox (char **user)
err (1, "hesiod_init");
hpo = hesiod_getmailhost (context, *user);
if (hpo == NULL)
if (hpo == NULL) {
warn ("hesiod_getmailhost %s", *user);
else {
} else {
if (strcasecmp(hpo->hesiod_po_type, "pop") != 0)
errx (1, "Unsopperted po type %s", hpo->hesiod_po_type);
errx (1, "Unsupported po type %s", hpo->hesiod_po_type);
ret = strdup(hpo->hesiod_po_host);
if(ret == NULL)