From: David Woodhouse Date: Sun, 18 Jul 2010 18:36:55 +0000 (+0100) Subject: Don't complain about RoutingType EX X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=c5d2b290e88f3886a6e8de86fc94e17f81f00c3f;p=users%2Fdwmw2%2Fews-sync.git Don't complain about RoutingType EX --- diff --git a/ews2ical.c b/ews2ical.c index 1ba81d9..b61f7a1 100644 --- a/ews2ical.c +++ b/ews2ical.c @@ -190,8 +190,9 @@ int process_mailbox(xmlNode *xml_node, const char **r_name, const char **r_email /* We seem to get EX routing for people who don't exist any more */ if (type && strcmp(type, "SMTP")) { - fprintf(stderr, "Unknown RoutingType '%s' ('%s' '%s')\n", - type, name, email); + if (strcmp(type, "EX")) + fprintf(stderr, "Unknown RoutingType '%s' ('%s' '%s')\n", + type, name, email); return -1; } *r_name = name;