From: Jim Rees Date: Wed, 18 May 2011 16:42:02 +0000 (-0400) Subject: Removed compilation warnings from mountd/cache.c X-Git-Tag: nfs-utils-1-2-4-rc9~13 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=c8e802c036a3f0fcd4481dae8b3ec09fb71f4118 Removed compilation warnings from mountd/cache.c Commit 5604b35a6 introduced a number of missing initializer warnings that were missed. This patch removes those warnings. Signed-off-by: Steve Dickson --- diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index df6b38f..0c4a03d 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -827,11 +827,11 @@ struct { FILE *f; char vbuf[RPC_CHAN_BUF_SIZE]; } cachelist[] = { - { "auth.unix.ip", auth_unix_ip, NULL}, - { "auth.unix.gid", auth_unix_gid, NULL}, - { "nfsd.export", nfsd_export, NULL}, - { "nfsd.fh", nfsd_fh, NULL}, - { NULL, NULL, NULL } + { "auth.unix.ip", auth_unix_ip, NULL, ""}, + { "auth.unix.gid", auth_unix_gid, NULL, ""}, + { "nfsd.export", nfsd_export, NULL, ""}, + { "nfsd.fh", nfsd_fh, NULL, ""}, + { NULL, NULL, NULL, ""} }; extern int manage_gids;