This is patch set 408 obtained from sourceforge cvs using cvsps. --- nfs-utils-1.0.7-kwc/ChangeLog | 8 ++++++++ nfs-utils-1.0.7-kwc/utils/mountd/mountd.c | 6 ++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff -puN ChangeLog~nfsutils_patchset_408 ChangeLog --- nfs-utils-1.0.7/ChangeLog~nfsutils_patchset_408 2005-10-10 11:39:05.180765000 -0400 +++ nfs-utils-1.0.7-kwc/ChangeLog 2005-10-10 11:39:05.211765000 -0400 @@ -1,3 +1,11 @@ +2005-10-07 Olaf Kirch + * utils/mountd/mountd.c(get_exportlist): Without this patch, + showmount -e would sometimes display host names that should really + have been subsumed under a wildcard entry. + + The problem was that the code in get_exportlist would always + skip the next group entry after removing one FQDN. + 2005-10-06 Steve Dickson NeilBrown * support/nfs/export.c: don't warn about sync/async for readonly exports diff -puN utils/mountd/mountd.c~nfsutils_patchset_408 utils/mountd/mountd.c --- nfs-utils-1.0.7/utils/mountd/mountd.c~nfsutils_patchset_408 2005-10-10 11:39:05.189764000 -0400 +++ nfs-utils-1.0.7-kwc/utils/mountd/mountd.c 2005-10-10 11:39:05.225764000 -0400 @@ -425,11 +425,9 @@ get_exportlist(void) xfree(c->gr_name); xfree(c); xfree (hp); - if ((c = *cp) == NULL) - break; + continue; } - else - xfree (hp); + xfree (hp); } cp = &(c->gr_next); } _