diff options
| author | jsing <> | 2014-10-31 13:46:17 +0000 |
|---|---|---|
| committer | jsing <> | 2014-10-31 13:46:17 +0000 |
| commit | 0832c4987f7c76663376596ce39d96366e9f82e5 (patch) | |
| tree | 44ea21a19ccf529a3e38fb107d3a2d1330f58d8e /src/lib/libtls/tls_util.c | |
| parent | f4146f5020f1e374a7621ab738fe3840240703f4 (diff) | |
| download | openbsd-0832c4987f7c76663376596ce39d96366e9f82e5.tar.gz openbsd-0832c4987f7c76663376596ce39d96366e9f82e5.tar.bz2 openbsd-0832c4987f7c76663376596ce39d96366e9f82e5.zip | |
Rename libressl to libtls to avoid confusion and to make it easier to
distinguish between LibreSSL (the project) and libressl (the library).
Discussed with many.
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libtls/tls_util.c (renamed from src/lib/libressl/ressl_util.c) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libressl/ressl_util.c b/src/lib/libtls/tls_util.c index d8b8f51738..2adfb674b8 100644 --- a/src/lib/libressl/ressl_util.c +++ b/src/lib/libtls/tls_util.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ressl_util.c,v 1.2 2014/08/05 12:46:16 jsing Exp $ */ | 1 | /* $OpenBSD: tls_util.c,v 1.1 2014/10/31 13:46:17 jsing Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
| 4 | * | 4 | * |
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #include <stdlib.h> | 18 | #include <stdlib.h> |
| 19 | 19 | ||
| 20 | #include "ressl_internal.h" | 20 | #include "tls_internal.h" |
| 21 | 21 | ||
| 22 | /* | 22 | /* |
| 23 | * Extract the host and port from a colon separated value. For a literal IPv6 | 23 | * Extract the host and port from a colon separated value. For a literal IPv6 |
| @@ -28,7 +28,7 @@ | |||
| 28 | * On memory allocation failure -1 will be returned. | 28 | * On memory allocation failure -1 will be returned. |
| 29 | */ | 29 | */ |
| 30 | int | 30 | int |
| 31 | ressl_host_port(const char *hostport, char **host, char **port) | 31 | tls_host_port(const char *hostport, char **host, char **port) |
| 32 | { | 32 | { |
| 33 | char *h, *p, *s; | 33 | char *h, *p, *s; |
| 34 | int rv = 1; | 34 | int rv = 1; |
