diff options
| author | Karl-Heinz Zimmer <[email protected]> | 2002-09-06 11:52:05 +0000 | 
|---|---|---|
| committer | Karl-Heinz Zimmer <[email protected]> | 2002-09-06 11:52:05 +0000 | 
| commit | da452438d9f84410f84cbb95147d0a6812c8aafc (patch) | |
| tree | 9edebf87b7316d0a2cb6499f2c78afd99e23dede | |
| parent | 2002-09-04 Marcus Brinkmann <[email protected]> (diff) | |
| download | gpgme-da452438d9f84410f84cbb95147d0a6812c8aafc.tar.gz gpgme-da452438d9f84410f84cbb95147d0a6812c8aafc.zip | |
Bugfix: The value text of protocol parameter of OpenPGP's multipart/signed Content-Type header must be enclosed in double quotes.  Bugfix was provided by Marc Mutz solving problems with pine.
Diffstat (limited to '')
| -rw-r--r-- | gpgmeplug/gpgme-openpgp.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/gpgmeplug/gpgme-openpgp.c b/gpgmeplug/gpgme-openpgp.c index 69c617cf..c8e0234f 100644 --- a/gpgmeplug/gpgme-openpgp.c +++ b/gpgmeplug/gpgme-openpgp.c @@ -22,7 +22,7 @@  #define GPGMEPLUG_DET_SIGN_INCLUDE_CLEARTEXT true  #define GPGMEPLUG_DET_SIGN_MAKE_MIME_OBJECT  true  #define GPGMEPLUG_DET_SIGN_MAKE_MULTI_MIME   true -#define GPGMEPLUG_DET_SIGN_CTYPE_MAIN        "multipart/signed;protocol=application/pgp-signature;micalg=pgp-sha1" +#define GPGMEPLUG_DET_SIGN_CTYPE_MAIN        "multipart/signed; protocol=\"application/pgp-signature\"; micalg=pgp-sha1"  #define GPGMEPLUG_DET_SIGN_CDISP_MAIN        ""  #define GPGMEPLUG_DET_SIGN_CTENC_MAIN        ""  #define GPGMEPLUG_DET_SIGN_CTYPE_VERSION     "" | 
