From: Chuck Lever Date: Sat, 23 Mar 2013 12:02:50 +0000 (-0400) Subject: mountd: remove unused variable X-Git-Tag: debian/1%1.2.8-1~11^2^2~31 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=2b445aa10fde7e84681f98a61e806e0c10da8be2;hp=da54dec3cb40095cac96fd2d838144129262ac7f mountd: remove unused variable Making all in mountd cache.c: In function 'subexport': cache.c:374:9: warning: unused variable 'l2' [-Wunused-variable] Commit 8e2fb3fc removed the last use of "l2" in the subexport() function. Signed-off-by: Chuck Lever Acked-by: J. Bruce Fields Signed-off-by: Steve Dickson --- diff --git a/utils/mountd/cache.c b/utils/mountd/cache.c index 45012be..c8aa46f 100644 --- a/utils/mountd/cache.c +++ b/utils/mountd/cache.c @@ -371,8 +371,6 @@ export_matches(nfs_export *exp, char *dom, char *path, struct addrinfo *ai) static bool subexport(struct exportent *e1, struct exportent *e2) { char *p1 = e1->e_path, *p2 = e2->e_path; - size_t l2 = strlen(p2); - return e2->e_flags & NFSEXP_CROSSMOUNT && is_subdirectory(p1, p2); }