Commit 94e1a6a7 94e1a6a7ebc857d4c0dcdc629178e324a06f36fc by Sergey Poznyakoff

(imap4d_bye0): Added missing argument to syslog.

1 parent ea8b0398
......@@ -72,7 +72,7 @@ imap4d_bye0 (int reason, struct imap4d_command *command)
default:
util_out (RESP_BYE, "Quitting (reason unknown)");
syslog (LOG_ERR, _("Quitting (numeric reason %d)"));
syslog (LOG_ERR, _("Quitting (numeric reason %d)"), reason);
break;
}
......