diff options
author | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2013-01-06 18:42:52 +0200 |
---|---|---|
committer | Gluzskiy Alexandr <sss@sss.chaoslab.ru> | 2013-01-06 18:42:52 +0200 |
commit | 0ca37041442b35763a3761aad47965a2c119f932 (patch) | |
tree | 4db224d161b34e554300d495db9cec77cb9b5cb3 /gpg_wrapper.cpp | |
parent | 6234ae30aedee812febea6ded7c028448011746a (diff) |
merged with miranda_ng main repo
Diffstat (limited to 'gpg_wrapper.cpp')
-rwxr-xr-x | gpg_wrapper.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gpg_wrapper.cpp b/gpg_wrapper.cpp index d743af4..b2c6585 100755 --- a/gpg_wrapper.cpp +++ b/gpg_wrapper.cpp @@ -80,7 +80,7 @@ pxResult pxExecute(wstring *acommandline, char *ainput, string *aoutput, LPDWORD if(errno == ENOENT) { mir_free(bin_path); - debuglog<<time_str()<<": GPG executable not found\n"; + debuglog<<std::string(time_str()+": GPG executable not found"); *result = pxNotFound; return pxNotFound; } @@ -100,7 +100,7 @@ pxResult pxExecute(wstring *acommandline, char *ainput, string *aoutput, LPDWORD mir_free(home_dir); } - debuglog<<time_str()<<": gpg in: "<<commandline<<"\n"; + debuglog<<std::string(time_str()+": gpg in: "+toUTF8(commandline)); success = CreateProcess(NULL, (TCHAR*)commandline.c_str(), NULL, NULL, TRUE, CREATE_NEW_CONSOLE | CREATE_UNICODE_ENVIRONMENT, (void*)_T("LANGUAGE=en@quot\0LC_ALL=English\0"), NULL, &sinfo, &pri); @@ -142,7 +142,7 @@ pxResult pxExecute(wstring *acommandline, char *ainput, string *aoutput, LPDWORD fix_line_term(*aoutput); - debuglog<<time_str()<<": gpg out: "<<aoutput->c_str(); + debuglog<<std::string(time_str()+": gpg out: "+*aoutput); WaitForSingleObject(pri.hProcess,INFINITE); @@ -155,6 +155,11 @@ pxResult pxExecute(wstring *acommandline, char *ainput, string *aoutput, LPDWORD *result = pxSuccess; // gpg_mutex.unlock(); + if(*aexitcode) + { + debuglog<<std::string(time_str()+": warning: wrong gpg exit status, gpg output: "+*aoutput); + return pxSuccessExitCodeInvalid; + } return pxSuccess; } |