From d0fd153c888b3fc20f93fa54caaa03d378b837da Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Wed, 25 Nov 1998 09:41:10 +0000 Subject: [PATCH] spelling git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5250 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/push/push.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appl/push/push.c b/appl/push/push.c index 547bb7d1e..e292e8e16 100644 --- a/appl/push/push.c +++ b/appl/push/push.c @@ -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)