diff options
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/crypto.h | 4 | ||||
-rw-r--r-- | lib/libssl/src/crypto/uid.c | 12 |
2 files changed, 1 insertions, 15 deletions
diff --git a/lib/libssl/src/crypto/crypto.h b/lib/libssl/src/crypto/crypto.h index 27b7f3fe022..4012f1c99aa 100644 --- a/lib/libssl/src/crypto/crypto.h +++ b/lib/libssl/src/crypto/crypto.h @@ -1,4 +1,4 @@ -/* $OpenBSD: crypto.h,v 1.33 2015/02/07 13:19:15 doug Exp $ */ +/* $OpenBSD: crypto.h,v 1.34 2015/04/11 16:16:15 deraadt Exp $ */ /* ==================================================================== * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. * @@ -348,8 +348,6 @@ int CRYPTO_is_mem_check_on(void); const char *SSLeay_version(int type); unsigned long SSLeay(void); -int OPENSSL_issetugid(void); - /* An opaque type representing an implementation of "ex_data" support */ typedef struct st_CRYPTO_EX_DATA_IMPL CRYPTO_EX_DATA_IMPL; /* Return an opaque pointer to the current "ex_data" implementation */ diff --git a/lib/libssl/src/crypto/uid.c b/lib/libssl/src/crypto/uid.c deleted file mode 100644 index c1bd92756bd..00000000000 --- a/lib/libssl/src/crypto/uid.c +++ /dev/null @@ -1,12 +0,0 @@ -/* $OpenBSD: uid.c,v 1.8 2014/06/12 15:49:27 deraadt Exp $ */ -/* - * Written by Theo de Raadt. Public domain. - */ - -#include <unistd.h> - -int -OPENSSL_issetugid(void) -{ - return issetugid(); -} |