summaryrefslogtreecommitdiff
path: root/plugins/CmdLine/src/mimcmd_handlers.cpp
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2014-11-11 19:27:54 +0000
committerKirill Volinsky <mataes2007@gmail.com>2014-11-11 19:27:54 +0000
commit816d3b463aa23516dc25c934c41d6483d9e3d3f5 (patch)
treef7a4104f4eb1443ae23523426f9d21333e31d61a /plugins/CmdLine/src/mimcmd_handlers.cpp
parente84f4c2b63f9cf85b35082a31fe6144c34d63eb0 (diff)
fixed vi info in command line
git-svn-id: http://svn.miranda-ng.org/main/trunk@10957 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CmdLine/src/mimcmd_handlers.cpp')
-rw-r--r--plugins/CmdLine/src/mimcmd_handlers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CmdLine/src/mimcmd_handlers.cpp b/plugins/CmdLine/src/mimcmd_handlers.cpp
index 3b03a87982..8c62e69617 100644
--- a/plugins/CmdLine/src/mimcmd_handlers.cpp
+++ b/plugins/CmdLine/src/mimcmd_handlers.cpp
@@ -1734,10 +1734,10 @@ void HandleVersionCommand(PCommand command, TArgument *argv, int argc, PReply re
if (argc == 2)
{
reply->code = MIMRES_SUCCESS;
- if (ServiceExists(MS_VERSIONINFO_GETINFO))
+ if (ServiceExists(MS_CRASHDUMPER_GETINFO))
{
char *data;
- CallService(MS_VERSIONINFO_GETINFO, (WPARAM) FALSE, (LPARAM) &data);
+ CallService(MS_CRASHDUMPER_GETINFO, (WPARAM)FALSE, (LPARAM)&data);
mir_snprintf(reply->message, reply->cMessage, data);
mir_free(data);
}