[git] GpgOL - branch, master, updated. gpgol-2.2.0-22-g1b9eb2a
by Andre Heinecke
cvs at cvs.gnupg.org
Fri Jun 22 17:28:18 CEST 2018
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GnuPG extension for MS Outlook".
The branch, master has been updated
via 1b9eb2a608ea5053575298655ddb9c12837d2b1a (commit)
from 27e7dfb1280f314286348a661e057eef5c8ab440 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1b9eb2a608ea5053575298655ddb9c12837d2b1a
Author: Andre Heinecke <aheinecke at intevation.de>
Date: Fri Jun 22 17:27:33 2018 +0200
Fix passing std::string to asprintf
* src/wks-helper.cpp (WKSHelper::notifiy): Fix asprintf call.
--
ooops.
diff --git a/src/wks-helper.cpp b/src/wks-helper.cpp
index bf03425..79d2de2 100644
--- a/src/wks-helper.cpp
+++ b/src/wks-helper.cpp
@@ -406,7 +406,7 @@ WKSHelper::notify (const char *cBox) const
"Register your Pubkey in that directory to make\n"
"it easy for others to send you encrypted mail.\n\n"
"It's secure and free!\n\n"
- "Register automatically?"), mbox);
+ "Register automatically?"), mbox.c_str ());
if (gpgol_message_box (get_active_hwnd (),
buf,
_("GpgOL: Pubkey directory available!"), MB_YESNO) == IDYES)
-----------------------------------------------------------------------
Summary of changes:
src/wks-helper.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
GnuPG extension for MS Outlook
http://git.gnupg.org
More information about the Gnupg-commits
mailing list