Skip to content

Commit

Permalink
Merge pull request cyrusimap#5161 from elliefm/v311/xsyslog-typos
Browse files Browse the repository at this point in the history
http_caldav_sched: fix typos in xsyslog calls
  • Loading branch information
elliefm authored Dec 18, 2024
2 parents 02dee89 + ca3e89b commit dfec6e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions imap/http_caldav_sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -2258,7 +2258,7 @@ static void caldav_rewrite_attachprop_to_binary(struct mailbox *attachments,
// Check if entry exists in WebDAV attachments
int r = webdav_lookup_uid(webdavdb, mid, &wdata);
if (r) {
xsyslog(LOG_ERR, "webdav_lookup_uid failed, ""mid=<%s> err=<%s>",
xsyslog(LOG_ERR, "webdav_lookup_uid failed", "mid=<%s> err=<%s>",
mid, cyrusdb_strerror(r));
goto done;
}
Expand Down Expand Up @@ -2342,7 +2342,7 @@ HIDDEN void caldav_rewrite_attachprop_to_url(struct webdav_db *webdavdb,
int r = webdav_lookup_uid(webdavdb, mid, &wdata);
if (r) {
if (r != CYRUSDB_NOTFOUND) {
xsyslog(LOG_ERR, "webdav_lookup_uid failed, ""mid=<%s> err=<%s>",
xsyslog(LOG_ERR, "webdav_lookup_uid failed", "mid=<%s> err=<%s>",
mid, cyrusdb_strerror(r));
}
return;
Expand Down

0 comments on commit dfec6e8

Please sign in to comment.