diff options
| author | christos <christos@NetBSD.org> | 2023-06-20 17:22:01 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2023-06-20 17:22:01 +0000 |
| commit | 1b75c0b4f48d0b27e2a79812306baa3e2e6668fe (patch) | |
| tree | 65a2dbb57a8dad3696ec4f3d05f0f76f4778424b /crypto | |
| parent | 174d8447de6a10b008b279809f74c45058a179ff (diff) | |
Don't use the hcrypto version, use the OpenSSL one.
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/external/bsd/heimdal/include/hcrypto/ui.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crypto/external/bsd/heimdal/include/hcrypto/ui.h b/crypto/external/bsd/heimdal/include/hcrypto/ui.h index e65b87ec62d..a3750b34979 100644 --- a/crypto/external/bsd/heimdal/include/hcrypto/ui.h +++ b/crypto/external/bsd/heimdal/include/hcrypto/ui.h @@ -1,4 +1,4 @@ -/* $NetBSD: ui.h,v 1.1 2023/06/20 16:49:46 christos Exp $ */ +/* $NetBSD: ui.h,v 1.2 2023/06/20 17:22:01 christos Exp $ */ /* * Copyright (c) 2005 Kungliga Tekniska Högskolan @@ -39,7 +39,10 @@ #define _HEIM_UI_H 1 /* symbol renaming */ +#if 0 +/* use the OpenSSL symbol, not worth it for a "Verify failed" printf */ #define UI_UTIL_read_pw_string hc_UI_UTIL_read_pw_string +#endif /* OpenSSL API extensions */ #define UI_UTIL_FLAG_VERIFY 0x1 /* ask to verify password */ |
