gnupg1orig: Remove left-over debug message.

Patch committed by James Cook <james.cook@utoronto.ca>.

authored by

Petar Bogdanovic and committed by
James Cook
273d31ff aed18956

+24
+2
pkgs/tools/security/gnupg/1.nix
··· 8 8 sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86"; 9 9 }; 10 10 11 + patches = [ ./remove-debug-message.patch ]; 12 + 11 13 buildInputs = [ readline bzip2 ]; 12 14 13 15 doCheck = true;
+22
pkgs/tools/security/gnupg/remove-debug-message.patch
··· 1 + commit 936416690e6c889505d84fe96983a66983beae5e 2 + Author: Werner Koch <wk@gnupg.org> 3 + Date: Thu Feb 26 09:38:58 2015 +0100 4 + 5 + gpg: Remove left-over debug message. 6 + 7 + * g10/armor.c (check_input): Remove log_debug. 8 + 9 + diff --git a/g10/armor.c b/g10/armor.c 10 + index 6c0013d..de1726d 100644 11 + --- a/g10/armor.c 12 + +++ b/g10/armor.c 13 + @@ -534,9 +534,6 @@ check_input( armor_filter_context_t *afx, IOBUF a ) 14 + /* This is probably input from a keyserver helper and we 15 + have not yet seen an error line. */ 16 + afx->key_failed_code = parse_key_failed_line (line+4, len-4); 17 + - log_debug ("armor-keys-failed (%.*s) ->%d\n", 18 + - (int)len, line, 19 + - afx->key_failed_code); 20 + } 21 + if( i >= 0 && !(afx->only_keyblocks && i != 1 && i != 5 && i != 6 )) { 22 + hdr_line = i;