Change remaining "struct AUTH *" to "AUTH *"
[deb_libnfs.git] / lib / init.c
index 93c3745db446ae57483466401e8ba4ba4b32c647..b583663b0d0de4e2a9e66e2ab30c11c3151ccf1a 100644 (file)
@@ -77,12 +77,12 @@ struct rpc_context *rpc_init_udp_context(void)
        return rpc;
 }
 
-void rpc_set_auth(struct rpc_context *rpc, struct AUTH *auth)
+void rpc_set_auth(struct rpc_context *rpc, AUTH *auth)
 {
        if (rpc->auth != NULL) {
                auth_destroy(rpc->auth);
        }
-       rpc->auth = (AUTH *)auth;
+       rpc->auth = auth;
 }