summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-10-17 05:33:14 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-10-17 05:33:14 +0000
commit873fda8daed9493ed45b3945c3be80c04827974e (patch)
treea7082f3261a67657220b79af555dd158cce40792 /protocols/WhatsApp/src
parent91fa6bc328504434af071b199db16466e93bba0e (diff)
fixed connection name
git-svn-id: http://svn.miranda-ng.org/main/trunk@6511 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/WhatsApp/src')
-rw-r--r--protocols/WhatsApp/src/proto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/WhatsApp/src/proto.cpp b/protocols/WhatsApp/src/proto.cpp
index 936248b082..648accab5b 100644
--- a/protocols/WhatsApp/src/proto.cpp
+++ b/protocols/WhatsApp/src/proto.cpp
@@ -22,7 +22,7 @@ WhatsAppProto::WhatsAppProto(const char* proto_name, const TCHAR* username) :
// Create standard network connection
TCHAR descr[512];
NETLIBUSER nlu = {sizeof(nlu)};
- nlu.flags = NUF_INCOMING | NUF_OUTGOING | NUF_HTTPCONNS;
+ nlu.flags = NUF_INCOMING | NUF_OUTGOING | NUF_HTTPCONNS | NUF_TCHAR;
char module[512];
mir_snprintf(module, SIZEOF(module), "%s", m_szModuleName);
nlu.szSettingsModule = module;