diff options
author | Nikos <nmav@crystal.(none)> | 2008-02-18 21:46:28 +0200 |
---|---|---|
committer | Nikos <nmav@crystal.(none)> | 2008-02-18 21:46:28 +0200 |
commit | 26f09c012128dbb17b50ed60f79e32d50328d783 (patch) | |
tree | 22332396e7829b1df7b79d1964123d620333e231 /tests | |
parent | ee0eb5b70c4e4db7a266a0915b520df335fad069 (diff) | |
download | gnutls-26f09c012128dbb17b50ed60f79e32d50328d783.tar.gz |
pgp_keyid_t is now compatible with the 2.2 key id.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/openpgp/keyring.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/openpgp/keyring.c b/tests/openpgp/keyring.c index 9453d3f78e..d56a3cd930 100644 --- a/tests/openpgp/keyring.c +++ b/tests/openpgp/keyring.c @@ -164,17 +164,17 @@ static unsigned char raw_keyring[] = { /* The ID of a key known to be in the above keyring. */ static const gnutls_openpgp_keyid_t id_in_keyring = /* "Dr. Who", first key in the keyring */ - { { 0x35, 0x14, 0x5c, 0xea, - 0xa7, 0xd9, 0x3c, 0x3f } }; + { 0x35, 0x14, 0x5c, 0xea, + 0xa7, 0xd9, 0x3c, 0x3f }; static const gnutls_openpgp_keyid_t id2_in_keyring = /* OpenCDK test key, second key in the keyring */ - { { 0xbd, 0x57, 0x2c, 0xdc, - 0xcc, 0xc0, 0x7c, 0x35 } }; + { 0xbd, 0x57, 0x2c, 0xdc, + 0xcc, 0xc0, 0x7c, 0x35 }; static const gnutls_openpgp_keyid_t id_not_in_keyring = - { { 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00 } }; + { 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00 }; void |