diff options
author | Simon Josefsson <simon@josefsson.org> | 2008-07-02 15:24:05 +0200 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2008-07-02 15:24:05 +0200 |
commit | bade988016aa5d2936c6bdf53570125181cfe2f9 (patch) | |
tree | 65948be9cd75ccfb8fd2a6c26ad15caed4119cc5 /doc/examples/ex-serv-pgp.c | |
parent | 36f07088e2979bf28e52fec4992d3da04e73eb6c (diff) | |
download | gnutls-bade988016aa5d2936c6bdf53570125181cfe2f9.tar.gz |
Indent code.
Diffstat (limited to 'doc/examples/ex-serv-pgp.c')
-rw-r--r-- | doc/examples/ex-serv-pgp.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/examples/ex-serv-pgp.c b/doc/examples/ex-serv-pgp.c index c98b5aaf99..6e04732e88 100644 --- a/doc/examples/ex-serv-pgp.c +++ b/doc/examples/ex-serv-pgp.c @@ -61,7 +61,7 @@ initialize_tls_session (void) gnutls_init (&session, GNUTLS_SERVER); - gnutls_priority_set_direct(session, "NORMAL", NULL); + gnutls_priority_set_direct (session, "NORMAL", NULL); /* request client certificate if any. */ @@ -93,9 +93,11 @@ main (void) gnutls_global_init (); gnutls_certificate_allocate_credentials (&cred); - gnutls_certificate_set_openpgp_keyring_file (cred, RINGFILE, GNUTLS_OPENPGP_FMT_BASE64); + gnutls_certificate_set_openpgp_keyring_file (cred, RINGFILE, + GNUTLS_OPENPGP_FMT_BASE64); - gnutls_certificate_set_openpgp_key_file (cred, CERTFILE, KEYFILE, GNUTLS_OPENPGP_FMT_BASE64); + gnutls_certificate_set_openpgp_key_file (cred, CERTFILE, KEYFILE, + GNUTLS_OPENPGP_FMT_BASE64); generate_dh_params (); |