diff options
author | Daniel Stenberg <daniel@haxx.se> | 2013-12-17 23:32:47 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-12-20 17:12:42 +0100 |
commit | 11e8066ef9568bea4a07065a954104c0ab7efdea (patch) | |
tree | 47d3b42110a4bf23d7b58a0446200e24959619de /lib/vtls | |
parent | 92b9ae5c5d59e8ad391351a908133aeae0d6314e (diff) |
vtls: renamed sslgen.[ch] to vtls.[ch]
Diffstat (limited to 'lib/vtls')
-rw-r--r-- | lib/vtls/openssl.c | 2 | ||||
-rw-r--r-- | lib/vtls/vtls.c (renamed from lib/vtls/sslgen.c) | 4 | ||||
-rw-r--r-- | lib/vtls/vtls.h (renamed from lib/vtls/sslgen.h) | 8 |
3 files changed, 7 insertions, 7 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index a897f76c7..f57f3bf4f 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -46,7 +46,7 @@ #include "slist.h" #include "strequal.h" #include "select.h" -#include "vtls/sslgen.h" +#include "vtls/vtls.h" #include "rawstr.h" #include "hostcheck.h" diff --git a/lib/vtls/sslgen.c b/lib/vtls/vtls.c index 74b1a4f05..ab7274ace 100644 --- a/lib/vtls/sslgen.c +++ b/lib/vtls/vtls.c @@ -58,8 +58,8 @@ #endif #include "urldata.h" -#define SSLGEN_C -#include "sslgen.h" /* generic SSL protos etc */ + +#include "vtls.h" /* generic SSL protos etc */ #include "openssl.h" /* OpenSSL versions */ #include "gtls.h" /* GnuTLS versions */ #include "nssg.h" /* NSS versions */ diff --git a/lib/vtls/sslgen.h b/lib/vtls/vtls.h index c7f5f0092..04ab60b18 100644 --- a/lib/vtls/sslgen.h +++ b/lib/vtls/vtls.h @@ -1,5 +1,5 @@ -#ifndef HEADER_CURL_SSLGEN_H -#define HEADER_CURL_SSLGEN_H +#ifndef HEADER_CURL_VTLS_H +#define HEADER_CURL_VTLS_H /*************************************************************************** * _ _ ____ _ * Project ___| | | | _ \| | @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -123,4 +123,4 @@ void Curl_ssl_md5sum(unsigned char *tmp, /* input */ #define Curl_ssl_kill_session(x) Curl_nop_stmt #endif -#endif /* HEADER_CURL_SSLGEN_H */ +#endif /* HEADER_CURL_VTLS_H */ |