summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVadim Dashevskiy <watcherhd@gmail.com>2014-07-05 05:48:01 +0000
committerVadim Dashevskiy <watcherhd@gmail.com>2014-07-05 05:48:01 +0000
commit710160e44eefb75153ff5b51add6c39fc74f4ac9 (patch)
tree96d3c45d4f5e8f25b6dfe739dfce134d43f677ff
parentdb8695e617f1b0723a654202cdbee11671819420 (diff)
New_GPG compilation fix (by person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9687 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rwxr-xr-xplugins/New_GPG/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/New_GPG/src/main.cpp b/plugins/New_GPG/src/main.cpp
index d8aef76a1e..49651b7fb8 100755
--- a/plugins/New_GPG/src/main.cpp
+++ b/plugins/New_GPG/src/main.cpp
@@ -2051,7 +2051,7 @@ void InitCheck()
_tcsncat(buf, home_dir_access?TranslateT("Home dir write access granted (this is good).\n"):TranslateT("Home dir has no write access (plugin most probably will not work).\n"), SIZEOF(buf));
_tcsncat(buf, temp_access?TranslateT("Temp dir write access granted (this is good).\n"):TranslateT("Temp dir has no write access (plugin should work, but may have some problems, file transfers will not work)."), SIZEOF(buf));
if(!gpg_valid)
- _tcsncat(buf, TranslateT("\nGPG will be disabled until you solve these problems"));
+ _tcsncat(buf, TranslateT("\nGPG will be disabled until you solve these problems"), SIZEOF(buf));
MessageBox(0, buf, TranslateT("GPG plugin problems"), MB_OK);
}
if(!gpg_valid)