X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Finit.c;h=464f88a2f940d79de6375ac81da51c3226d82036;hb=a3d6cf111ed6c756b4483eb02486c046a3d0195b;hp=d421797f2c398ecec47fd4f5441042a5526e83a7;hpb=41d82d7d825b9b4e73bb227f5b2fafa86067cba0;p=deb_libnfs.git diff --git a/lib/init.c b/lib/init.c index d421797..464f88a 100644 --- a/lib/init.c +++ b/lib/init.c @@ -40,7 +40,7 @@ struct rpc_context *rpc_init_context(void) if (rpc == NULL) { return NULL; } - bzero(rpc, sizeof(struct rpc_context)); + bzero((char *)rpc, sizeof(struct rpc_context)); rpc->encodebuflen = 65536; rpc->encodebuf = malloc(rpc->encodebuflen); @@ -83,7 +83,7 @@ void rpc_set_auth(struct rpc_context *rpc, struct AUTH *auth) if (rpc->auth != NULL) { auth_destroy(rpc->auth); } - rpc->auth = auth; + rpc->auth = (AUTH *)auth; }