forked from openbsd/ports
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
do not build unused code and remove uneeded dependency on libm.
ok tb@
- Loading branch information
1 parent
8243b58
commit 79c9d8a
Showing
3 changed files
with
5 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: smtpd.h,v 1.666 2021/04/10 06:44:18 eric Exp $ */ | ||
/* $OpenBSD: smtpd.h,v 1.667 2021/04/11 07:18:08 eric Exp $ */ | ||
|
||
/* | ||
* Copyright (c) 2008 Gilles Chehade <[email protected]> | ||
|
@@ -1638,11 +1638,6 @@ const char *srs_encode(const char *, const char *); | |
const char *srs_decode(const char *); | ||
|
||
|
||
/* ssl_smtpd.c */ | ||
void *ssl_mta_init(void *, char *, off_t, const char *); | ||
void *ssl_smtp_init(void *, int); | ||
|
||
|
||
/* stat_backend.c */ | ||
struct stat_backend *stat_backend_lookup(const char *); | ||
void stat_increment(const char *, size_t); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: ssl.h,v 1.22 2021/03/05 12:37:32 eric Exp $ */ | ||
/* $OpenBSD: ssl.h,v 1.23 2021/04/11 07:18:08 eric Exp $ */ | ||
/* | ||
* Copyright (c) 2013 Gilles Chehade <[email protected]> | ||
* | ||
|
@@ -65,9 +65,3 @@ int ssl_load_pkey(const void *, size_t, char *, off_t, | |
int ssl_ctx_fake_private_key(SSL_CTX *, const void *, size_t, | ||
char *, off_t, X509 **, EVP_PKEY **); | ||
char *ssl_pubkey_hash(const char *, off_t); | ||
|
||
/* ssl_privsep.c */ | ||
int ssl_by_mem_ctrl(X509_LOOKUP *, int, const char *, long, char **); | ||
|
||
/* ssl_verify.c */ | ||
int ssl_check_name(X509 *, const char *, int *); |