[git] GPA - branch, master, updated. gpa-0.9.4-19-ga74c296
by Werner Koch
cvs at cvs.gnupg.org
Thu Mar 6 15:50:08 CET 2014
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 "The GNU Privacy Assistant".
The branch, master has been updated
via a74c29602482d361d289dc6248208fa6f2bc36c4 (commit)
from cb0e2c95aafaab607ae7f040a79e3b47db80ee0f (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 a74c29602482d361d289dc6248208fa6f2bc36c4
Author: Werner Koch <wk at gnupg.org>
Date: Thu Mar 6 15:44:44 2014 +0100
Fix double window bug with ENCRYPT_SIGN_FILES.
* src/server.c (impl_encrypt_sign_files): s/if/else if/.
diff --git a/src/server.c b/src/server.c
index 17ebde3..6bbbef3 100644
--- a/src/server.c
+++ b/src/server.c
@@ -1284,7 +1284,7 @@ impl_encrypt_sign_files (assuan_context_t ctx, int encr, int sign)
if (encr && sign)
op = (GpaFileOperation *)
gpa_file_encrypt_sign_operation_new (NULL, ctrl->files, FALSE);
- if (encr)
+ else if (encr)
op = (GpaFileOperation *)
gpa_file_encrypt_operation_new (NULL, ctrl->files, FALSE);
else
-----------------------------------------------------------------------
Summary of changes:
src/server.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
The GNU Privacy Assistant
http://git.gnupg.org
More information about the Gnupg-commits
mailing list