diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-02 20:51:59 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-08-02 20:51:59 +0000 |
commit | 53551a6153e66fff4b35eb92366b0d1be906d624 (patch) | |
tree | 5c579334678582dfdb4dd1d05406ba7650f60983 /protocols/Yahoo | |
parent | ada3e8fc7b932bee4e01b99fb7944e85ec67d0b2 (diff) |
Build time removed from plugin info.
git-svn-id: http://svn.miranda-ng.org/main/trunk@1331 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Yahoo')
-rw-r--r-- | protocols/Yahoo/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Yahoo/util.cpp b/protocols/Yahoo/util.cpp index 62afef5a56..9e3c45d8bc 100644 --- a/protocols/Yahoo/util.cpp +++ b/protocols/Yahoo/util.cpp @@ -346,7 +346,7 @@ void CYahooProto::YAHOO_utils_logversion() #ifdef YAHOO_CVSBUILD
_snprintf(str, sizeof(str), "Yahoo v%d.%d.%d.%da (%s %s)", (pluginInfo.version >> 24) & 0xFF, (pluginInfo.version >> 16) & 0xFF,
- (pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF, __DATE__, __TIME__);
+ (pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF);
#else
_snprintf(str, sizeof(str), "Yahoo v%d.%d.%d.%d", (pluginInfo.version >> 24) & 0xFF, (pluginInfo.version >> 16) & 0xFF,
(pluginInfo.version >> 8) & 0xFF, pluginInfo.version & 0xFF);
|