diff options
Diffstat (limited to 'g10/armor.c')
-rw-r--r-- | g10/armor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/armor.c b/g10/armor.c index aa5609018..46c3cc62d 100644 --- a/g10/armor.c +++ b/g10/armor.c @@ -1059,7 +1059,7 @@ armor_filter( void *opaque, int control, iobuf_put(a, c); c = bintoasc[radbuf[2]&077]; iobuf_put(a, c); - if( ++idx2 >= (72/4) ) { + if( ++idx2 >= (64/4) ) { /* pgp doesn't like 72 here */ iobuf_put(a, '\n'); idx2=0; } @@ -1098,7 +1098,7 @@ armor_filter( void *opaque, int control, iobuf_put(a, c); iobuf_put(a, '='); } - if( ++idx2 >= (72/4) ) { + if( ++idx2 >= (64/4) ) { /* pgp doesn't like 72 here */ iobuf_put(a, '\n'); idx2=0; } |