diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:55:36 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 15:59:02 +0200 |
commit | ca4ec8039628cac6600541472b068be7535d4bb4 (patch) | |
tree | 93a4212150449d0a326ef7e259b6f802c4099f95 /sunrpc/auth_des.c | |
parent | 24cffce7366c4070d8f823702a4fcec2cb732595 (diff) | |
download | glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.gz glibc-ca4ec8039628cac6600541472b068be7535d4bb4.tar.bz2 glibc-ca4ec8039628cac6600541472b068be7535d4bb4.zip |
sunrpc: Remove internal_function attribute
Diffstat (limited to 'sunrpc/auth_des.c')
-rw-r--r-- | sunrpc/auth_des.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sunrpc/auth_des.c b/sunrpc/auth_des.c index 42d6b552f4..5b6f985bc2 100644 --- a/sunrpc/auth_des.c +++ b/sunrpc/auth_des.c @@ -62,8 +62,7 @@ static bool_t authdes_marshal (AUTH *, XDR *); static bool_t authdes_validate (AUTH *, struct opaque_auth *); static bool_t authdes_refresh (AUTH *); static void authdes_destroy (AUTH *); -static bool_t synchronize (struct sockaddr *, struct rpc_timeval *) - internal_function; +static bool_t synchronize (struct sockaddr *, struct rpc_timeval *); static const struct auth_ops authdes_ops = { authdes_nextverf, @@ -444,7 +443,6 @@ authdes_destroy (AUTH *auth) * adjust timep to reflect the delta between our clocks */ static bool_t -internal_function synchronize (struct sockaddr *syncaddr, struct rpc_timeval *timep) { struct timeval mytime; |