diff options
author | Marcus Brinkmann <[email protected]> | 2001-10-17 19:13:11 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-10-17 19:13:11 +0000 |
commit | 96a64f6b80d9a47b30d93136c8a49a9fdcc5283e (patch) | |
tree | 16440542bfb4a3ab59d74ca7c29df8dbc1734b8a | |
parent | New API to switch to S/MIME. There is no code yet behind it. (diff) | |
download | gpgme-96a64f6b80d9a47b30d93136c8a49a9fdcc5283e.tar.gz gpgme-96a64f6b80d9a47b30d93136c8a49a9fdcc5283e.zip |
2001-10-17 Marcus Brinkmann <[email protected]>
* gpgme.c (gpgme_set_protocol): Fix last change.
Diffstat (limited to '')
-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: |