Small typo in the new fs uuid comparison code.
commit 361f6d6c5da3c5c5ba709f8f3704865b0f7267cc Author: Doug Nazar <nazard.michi@xxxxxxxxx> Date: Thu Jul 1 05:37:23 2010 -0400 Fix memcmp result comparison error for uuid match. diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index 9e1b164..bf18a9a 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -513,7 +513,7 @@ void nfsd_fh(FILE *f) for (type = 0; uuid_by_path(path, type, uuidlen, u); type++) - if (memcmp(u, fhuuid, uuidlen) != 0) + if (memcmp(u, fhuuid, uuidlen) == 0) break; if (memcmp(u, fhuuid, uuidlen) != 0)