X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=blobdiff_plain;f=utils%2Fmountd%2Fcache.c;h=df6b38f9b5c737d5f9e87a9380ef854d3e464b16;hp=ce93e3cf61b66f5b3fdfb623bcddd94a130eaf87;hb=5604b35a61e22930873ffc4e9971002f578e7978;hpb=9274e94db85bac04e170414cb8e0f4be271cde90 diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index ce93e3c..df6b38f 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -825,6 +825,7 @@ struct { char *cache_name; void (*cache_handle)(FILE *f); FILE *f; + char vbuf[RPC_CHAN_BUF_SIZE]; } cachelist[] = { { "auth.unix.ip", auth_unix_ip, NULL}, { "auth.unix.gid", auth_unix_gid, NULL}, @@ -848,6 +849,10 @@ void cache_open(void) continue; sprintf(path, "/proc/net/rpc/%s/channel", cachelist[i].cache_name); cachelist[i].f = fopen(path, "r+"); + if (cachelist[i].f != NULL) { + setvbuf(cachelist[i].f, cachelist[i].vbuf, _IOLBF, + RPC_CHAN_BUF_SIZE); + } } }