diff options
author | Simon Josefsson <simon@josefsson.org> | 2008-09-16 17:24:55 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2008-09-16 17:24:55 +0200 |
commit | 0e7fdf91bd810f400bdd9faa73d47c0c5797a213 (patch) | |
tree | db0ea92eeb0e9649c231ac7bc7662f65476e6416 /tests/pgps2kgnu.c | |
parent | 5cff6d578d0c38c56f2c8dfafa7d6dfc3ecbc4db (diff) | |
download | gnutls-0e7fdf91bd810f400bdd9faa73d47c0c5797a213.tar.gz |
Indent.
Diffstat (limited to 'tests/pgps2kgnu.c')
-rw-r--r-- | tests/pgps2kgnu.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/pgps2kgnu.c b/tests/pgps2kgnu.c index 739b5ba821..91a5285e59 100644 --- a/tests/pgps2kgnu.c +++ b/tests/pgps2kgnu.c @@ -61,8 +61,7 @@ static char dummy_key[] = "vQP/ZhK+2ly9oI2z7ZcNC/BJRch0/ybQ3haahII8pXXmOThpZohr/LUgoWgCZdXg\n" "vP6yiszNk2tIs8KphCAw7Lw/qzDC2hEORjWO4f46qk73RAgSqG/GyzI4ltWiDhqn\n" "vnQCFl3+QFSe4zinqykHnLwGPMXv428d/ZjkIc2ju8dRsn4=\n" - "=CR5w\n" - "-----END PGP PRIVATE KEY BLOCK-----\n"; + "=CR5w\n" "-----END PGP PRIVATE KEY BLOCK-----\n"; /* Test capability of reading the gnu-dummy OpenPGP S2K extension. See: doc/DETAILS from gnupg @@ -73,7 +72,8 @@ int main (void) { int rc; - gnutls_datum_t keydatum = { (unsigned char*)dummy_key, strlen (dummy_key) }; + gnutls_datum_t keydatum = + { (unsigned char *) dummy_key, strlen (dummy_key) }; gnutls_openpgp_privkey_t key; rc = gnutls_global_init (); @@ -95,7 +95,7 @@ main (void) GNUTLS_OPENPGP_FMT_BASE64, NULL, 0); if (rc) { - printf ("gnutls_openpgp_privkey_import rc %d: %s\n", + printf ("gnutls_openpgp_privkey_import rc %d: %s\n", rc, gnutls_strerror (rc)); return 1; } |