diff options
Diffstat (limited to 'tools/no-libgcrypt.c')
-rw-r--r-- | tools/no-libgcrypt.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/no-libgcrypt.c b/tools/no-libgcrypt.c index e4b304a51..496757647 100644 --- a/tools/no-libgcrypt.c +++ b/tools/no-libgcrypt.c @@ -4,7 +4,7 @@ * This file is free software; as a special exception the author gives * unlimited permission to copy and/or distribute it, with or without * modifications, as long as this notice is preserved. - * + * * This file is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY, to the extent permitted by law; without even * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR @@ -115,28 +115,28 @@ gcry_free (void *a) /* We need this dummy because exechelp.c uses gcry_control to terminate the secure memeory. */ -gcry_error_t +gcry_error_t gcry_control (enum gcry_ctl_cmds cmd, ...) { (void)cmd; return 0; } -void +void gcry_set_outofcore_handler (gcry_handler_no_mem_t h, void *opaque) { (void)h; (void)opaque; } -void +void gcry_set_fatalerror_handler (gcry_handler_error_t fnc, void *opaque) { (void)fnc; (void)opaque; } -void +void gcry_set_log_handler (gcry_handler_log_t f, void *opaque) { (void)f; @@ -149,7 +149,7 @@ gcry_create_nonce (void *buffer, size_t length) { (void)buffer; (void)length; - + log_fatal ("unexpected call to gcry_create_nonce\n"); } |