Module: wine Branch: master Commit: 7d2993d24c0346f2f64dba62590dfb1b5aec41b5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7d2993d24c0346f2f64dba6259...
Author: Alexandre Julliard julliard@winehq.org Date: Thu Dec 4 12:47:32 2008 +0100
inetcomm: Make a function static.
---
dlls/inetcomm/pop3transport.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/inetcomm/pop3transport.c b/dlls/inetcomm/pop3transport.c index 0377164..b0e31df 100644 --- a/dlls/inetcomm/pop3transport.c +++ b/dlls/inetcomm/pop3transport.c @@ -460,7 +460,7 @@ static void POP3Transport_CallbackRecvRSETResp(IInternetTransport *iface, char * InternetTransport_ReadLine(&This->InetTransport, POP3Transport_CallbackProcessRSETResp); }
-void POP3Transport_CallbackProcessRETRResp(IInternetTransport *iface, char *pBuffer, int cbBuffer) +static void POP3Transport_CallbackProcessRETRResp(IInternetTransport *iface, char *pBuffer, int cbBuffer) { POP3Transport *This = (POP3Transport *)iface; POP3RESPONSE response;