Commit 9bc59f54 9bc59f5471cc74db5fef8bccee4423c6a5bbff4f by Sergey Poznyakoff

libmu_sieve: minor fix.

* libmu_sieve/util.c (mu_sieve_error): Fix typo.
1 parent 8bf6d372
......@@ -213,7 +213,7 @@ mu_sieve_error (mu_sieve_machine_t mach, const char *fmt, ...)
MU_LOG_ERROR, MU_LOGMODE_LOCUS);
if (mach->identifier)
mu_stream_printf (mach->errstream, "%s: ", mach->identifier);
mu_stream_printf (mach->errstream, fmt, ap);
mu_stream_vprintf (mach->errstream, fmt, ap);
mu_stream_write (mach->errstream, "\n", 1, NULL);
va_end (ap);
}
......