(spamd_shutdown): Bugfix
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -109,7 +109,7 @@ spamd_shutdown (stream_t stream, int flag) | ... | @@ -109,7 +109,7 @@ spamd_shutdown (stream_t stream, int flag) |
109 | mu_transport_t trans; | 109 | mu_transport_t trans; |
110 | stream_flush (stream); | 110 | stream_flush (stream); |
111 | stream_get_transport (stream, &trans); | 111 | stream_get_transport (stream, &trans); |
112 | shutdown ((int)trans, flag); | 112 | shutdown (fileno ((FILE*)trans), flag); |
113 | } | 113 | } |
114 | 114 | ||
115 | static void | 115 | static void | ... | ... |
-
Please register or sign in to post a comment