diff options
author | George Hazan <ghazan@miranda.im> | 2022-01-24 18:24:16 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2022-01-24 18:24:16 +0300 |
commit | ece3c2433832d935c0634a72bac1a7b948b04b44 (patch) | |
tree | b93092dd39f076f8b764d596f2f4fe9381d2e530 /protocols/YAMN | |
parent | dae0eee5cac2a349102d78f71c03686a83866bb7 (diff) |
compilation fix
Diffstat (limited to 'protocols/YAMN')
-rw-r--r-- | protocols/YAMN/src/proto/netlib.cpp | 2 | ||||
-rw-r--r-- | protocols/YAMN/src/proto/pop3/pop3comm.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/YAMN/src/proto/netlib.cpp b/protocols/YAMN/src/proto/netlib.cpp index a2f924294e..34366fa734 100644 --- a/protocols/YAMN/src/proto/netlib.cpp +++ b/protocols/YAMN/src/proto/netlib.cpp @@ -31,7 +31,7 @@ void __stdcall SSL_DebugLog(const char *fmt, ...) va_end(vararg); } -HANDLE RegisterNLClient(const char *name) +HANDLE RegisterNLClient(char *name) { #ifdef DEBUG_COMM DebugLog(CommFile, "<Register PROXY support>"); diff --git a/protocols/YAMN/src/proto/pop3/pop3comm.cpp b/protocols/YAMN/src/proto/pop3/pop3comm.cpp index 4d5f7c9fa8..690cad6e86 100644 --- a/protocols/YAMN/src/proto/pop3/pop3comm.cpp +++ b/protocols/YAMN/src/proto/pop3/pop3comm.cpp @@ -131,7 +131,7 @@ YAMN_PROTOREGISTRATION POP3ProtocolRegistration = static wchar_t *FileName = nullptr; -HANDLE RegisterNLClient(const char *name); +HANDLE RegisterNLClient(char *name); //-------------------------------------------------------------------------------------------------- //-------------------------------------------------------------------------------------------------- |