diff options
| author | Darshit Shah <darnir@gnu.org> | 2021-09-08 17:52:32 +0200 |
|---|---|---|
| committer | Darshit Shah <darnir@gnu.org> | 2021-09-08 17:52:32 +0200 |
| commit | 3ea9658c072fa1dc87aec7af45393b46904b143f (patch) | |
| tree | 8e98cb868d014eff082707160692908db0ef6e21 | |
| parent | 31b82825a21c18eb0e2f266d1590e3cd2dd323f3 (diff) | |
| download | wget-3ea9658c072fa1dc87aec7af45393b46904b143f.tar.gz | |
Remove suprious print statements
* src/gnutls.c: Remove fprintf statements. We should never print to
console directly. Always honor the log levels.
Fixes: #61125
| -rw-r--r-- | src/gnutls.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gnutls.c b/src/gnutls.c index 0ecf2c8..81fe951 100644 --- a/src/gnutls.c +++ b/src/gnutls.c @@ -99,7 +99,6 @@ static gnutls_certificate_credentials_t credentials; bool ssl_init (void) { - fprintf(stderr,"SSL_INIT\n"); /* Becomes true if GnuTLS is initialized. */ const char *ca_directory; DIR *dir; @@ -237,8 +236,6 @@ cert to be of the same type.\n")); void ssl_cleanup (void) { - fprintf(stderr,"SSL_CLEANUP\n"); - if (!ssl_initialized) return; |
