summaryrefslogtreecommitdiff
path: root/plugins/New_GPG/src/messages.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-03-17 18:42:52 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-03-17 18:42:52 +0300
commit95d8d59b4e837afcb5eb8f0e7111139919d2e50c (patch)
treefd69c28e0fc3d0034be4a7a13bfdd453fe3afaa9 /plugins/New_GPG/src/messages.cpp
parent415be2e734d96a84ecc908879dd6eb333d00d52e (diff)
NewGPG: fix for hardcoded utf8 constants
Diffstat (limited to 'plugins/New_GPG/src/messages.cpp')
-rwxr-xr-xplugins/New_GPG/src/messages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/New_GPG/src/messages.cpp b/plugins/New_GPG/src/messages.cpp
index 797afd030f..14ba256481 100755
--- a/plugins/New_GPG/src/messages.cpp
+++ b/plugins/New_GPG/src/messages.cpp
@@ -435,7 +435,7 @@ INT_PTR RecvMsgSvc(WPARAM w, LPARAM l)
s2 = output.find(":", s1);
g_plugin.setString(ccs->hContact, "KeyID", output.substr(s1, s2 - s1).c_str());
s2 += 2;
- s1 = output.find("“", s2);
+ s1 = output.find(RUS_QUOTE, s2);
if (s1 == string::npos) {
s1 = output.find("\"", s2);
s1 += 1;