projects
/
users
/
dwmw2
/
ews-sync.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1e596b3
)
Don't complain about RoutingType EX
author
David Woodhouse <dwmw2@infradead.org>
Sun, 18 Jul 2010 18:36:55 +0000
(19:36 +0100)
committer
David Woodhouse <dwmw2@infradead.org>
Sun, 18 Jul 2010 18:36:55 +0000
(19:36 +0100)
ews2ical.c
patch
|
blob
|
history
diff --git
a/ews2ical.c
b/ews2ical.c
index 1ba81d90e9befdc6a785167ab3fa39e83ff516f7..b61f7a1978bf8dc84ed41eb06e9850f76ee8e9cd 100644
(file)
--- 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;