diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-04-16 21:59:36 -0400 |
commit | 7b57bfe5988e476ea40934457dfd1c8a231e2391 (patch) | |
tree | 33dbec2b9a1a8fd8472a214945090f31d5372a8e /sunrpc/xcrypt.c | |
parent | e6c61494125126d2ba77e5d99f83887a2ed49783 (diff) | |
download | glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.gz glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.tar.bz2 glibc-7b57bfe5988e476ea40934457dfd1c8a231e2391.zip |
Obsolete RPC implementation in libc.
Diffstat (limited to 'sunrpc/xcrypt.c')
-rw-r--r-- | sunrpc/xcrypt.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sunrpc/xcrypt.c b/sunrpc/xcrypt.c index 337fd2c5a9..8b7642b503 100644 --- a/sunrpc/xcrypt.c +++ b/sunrpc/xcrypt.c @@ -89,7 +89,7 @@ passwd2des_internal (char *pw, char *key) #ifdef _LIBC libc_hidden_def (passwd2des_internal) -strong_alias (passwd2des_internal, passwd2des) +compat_symbol (libc, passwd2des_internal, passwd2des, GLIBC_2_1); #else void passwd2des (char *pw, char *key) { @@ -127,6 +127,7 @@ xencrypt (char *secret, char *passwd) free (buf); return 1; } +libc_hidden_nolink (xencrypt, GLIBC_2_0) /* * Decrypt secret key using passwd @@ -159,6 +160,11 @@ xdecrypt (char *secret, char *passwd) free (buf); return 1; } +#ifdef EXPORT_RPC_SYMBOLS +libc_hidden_def (xdecrypt) +#else +libc_hidden_nolink (xdecrypt, GLIBC_2_1) +#endif /* * Hex to binary conversion |