diff options
author | David Shaw <[email protected]> | 2003-05-24 21:50:33 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-05-24 21:50:33 +0000 |
commit | 3a23c4230bc61f905a316c2df9116d871fd9029f (patch) | |
tree | 6e913e8b23f538fb0bf19e213568a140f077b54e /g10/mainproc.c | |
parent | * bftest.c, crlf.c, mk-tdata.c, mpicalc.c, shmtest.c: Edit all (diff) | |
download | gnupg-3a23c4230bc61f905a316c2df9116d871fd9029f.tar.gz gnupg-3a23c4230bc61f905a316c2df9116d871fd9029f.zip |
* armor.c, g10.c, kbnode.c, misc.c, pkclist.c, sign.c, build-packet.c,
getkey.c, keydb.c, openfile.c, plaintext.c, status.c, gpgv.c, keygen.c,
options.h, sig-check.c, tdbio.h, encode.c, mainproc.c, parse-packet.c,
signal.c, textfilter.c: Edit all preprocessor instructions to remove
whitespace before the '#'. This is not required by C89, but there are some
compilers out there that don't like it.
Diffstat (limited to '')
-rw-r--r-- | g10/mainproc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/mainproc.c b/g10/mainproc.c index fbc2394eb..a801f5ea9 100644 --- a/g10/mainproc.c +++ b/g10/mainproc.c @@ -1647,7 +1647,7 @@ proc_tree( CTX c, KBNODE node ) * signature has been created in textmode */ c->mfx.md2 = md_open( sig->digest_algo, 0 ); } - #if 0 /* workaround disabled */ +#if 0 /* workaround disabled */ /* Here we have another hack to work around a pgp 2 bug * It works by not using the textmode for detached signatures; * this will let the first signature check (on md) fail @@ -1656,7 +1656,7 @@ proc_tree( CTX c, KBNODE node ) * hack but it may help in some cases (and break others) */ /* c->mfx.md2? 0 :(sig->sig_class == 0x01) */ - #endif +#endif if ( DBG_HASHING ) { md_start_debug( c->mfx.md, "verify" ); if ( c->mfx.md2 ) |