diff options
-rw-r--r-- | gpgme/ChangeLog | 4 | ||||
-rw-r--r-- | gpgme/gpgme.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 34ef166d..9010123c 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,3 +1,7 @@ +2001-10-17 Marcus Brinkmann <[email protected]> + + * gpgme.c (gpgme_set_protocol): Fix last change. + 2001-10-15 Werner Koch <[email protected]> * gpgme.h (GpgmeProtocol): New. diff --git a/gpgme/gpgme.c b/gpgme/gpgme.c index 86c08270..870c80b8 100644 --- a/gpgme/gpgme.c +++ b/gpgme/gpgme.c @@ -203,7 +203,7 @@ gpgme_set_protocol (GpgmeCtx c, GpgmeProtocol prot) switch (prot) { - case GPGME_PROTOCOL_OPENPGP: + case GPGME_PROTOCOL_OpenPGP: c->use_cms = 0; break; case GPGME_PROTOCOL_CMS: |