X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=lib%2Finit.c;h=aba7e5e0981205002f1c0ca71586163a8bca5fcc;hb=440a7dfced274c078b61fdb87301d26a4177fc70;hp=fb2ae83512150b4f0eb0114eccbc11ec9b5dcad5;hpb=84004dbf9bb2ab8a7f8b968affc53ee3065fa911;p=deb_libnfs.git diff --git a/lib/init.c b/lib/init.c index fb2ae83..aba7e5e 100644 --- a/lib/init.c +++ b/lib/init.c @@ -21,6 +21,8 @@ #include #include #include +#include +#include #include #include "slist.h" #include "libnfs.h" @@ -33,7 +35,6 @@ struct rpc_context *rpc_init_context(void) rpc = malloc(sizeof(struct rpc_context)); if (rpc == NULL) { - printf("Failed to allocate rpc context\n"); return NULL; } bzero(rpc, sizeof(struct rpc_context)); @@ -41,14 +42,12 @@ struct rpc_context *rpc_init_context(void) rpc->encodebuflen = 65536; rpc->encodebuf = malloc(rpc->encodebuflen); if (rpc->encodebuf == NULL) { - printf("Failed to allocate a buffer for rpc encoding\n"); free(rpc); return NULL; } rpc->auth = authunix_create_default(); if (rpc->auth == NULL) { - printf("failed to create authunix\n"); free(rpc->encodebuf); free(rpc); return NULL;