Commit f9e62c10 f9e62c104fc228ae81d127485d0627e9e2605d93 by Sergey Poznyakoff

(spamd_shutdown): Bugfix

1 parent 35e34137
......@@ -109,7 +109,7 @@ spamd_shutdown (stream_t stream, int flag)
mu_transport_t trans;
stream_flush (stream);
stream_get_transport (stream, &trans);
shutdown ((int)trans, flag);
shutdown (fileno ((FILE*)trans), flag);
}
static void
......