Fix imap4d testsuite
The tests failed if MU_DEFAULT_SCHEME were set to anything, but mbox. * imap4d/tests/atlocal.in (make_config): set .mailbox.mailbox-type=mbox. * imap4d/list.c (imap4d_list): Use %s as the format.
Showing
2 changed files
with
2 additions
and
1 deletions
... | @@ -317,6 +317,6 @@ imap4d_list (struct imap4d_session *session, | ... | @@ -317,6 +317,6 @@ imap4d_list (struct imap4d_session *session, |
317 | free (cwd); | 317 | free (cwd); |
318 | free (ref); | 318 | free (ref); |
319 | 319 | ||
320 | return io_completion_response (command, status, resp_text[status]); | 320 | return io_completion_response (command, status, "%s", resp_text[status]); |
321 | } | 321 | } |
322 | 322 | ... | ... |
-
Please register or sign in to post a comment