diff options
Diffstat (limited to 'protocols/Omegle/src')
-rw-r--r-- | protocols/Omegle/src/connection.cpp | 2 | ||||
-rw-r--r-- | protocols/Omegle/src/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Omegle/src/connection.cpp b/protocols/Omegle/src/connection.cpp index 2e760b810e..46625c6eea 100644 --- a/protocols/Omegle/src/connection.cpp +++ b/protocols/Omegle/src/connection.cpp @@ -26,7 +26,7 @@ void OmegleProto::SignOn(void*) {
SYSTEMTIME t;
GetLocalTime( &t );
- debugLogA("[%d.%d.%d] Using Omegle Protocol %s", t.wDay, t.wMonth, t.wYear, __VERSION_STRING);
+ debugLogA("[%d.%d.%d] Using Omegle Protocol %s", t.wDay, t.wMonth, t.wYear, __VERSION_STRING_DOTS);
ScopedLock s(signon_lock_);
diff --git a/protocols/Omegle/src/main.cpp b/protocols/Omegle/src/main.cpp index 6d07577936..c7c1438d16 100644 --- a/protocols/Omegle/src/main.cpp +++ b/protocols/Omegle/src/main.cpp @@ -120,7 +120,7 @@ extern "C" int __declspec(dllexport) Load(void) #else
agent << " Omegle Protocol/";
#endif
- agent << __VERSION_STRING;
+ agent << __VERSION_STRING_DOTS;
g_strUserAgent = agent.str( );
}
|