Do not complain if pmvarrun had no permission to unlink.

Index: libpam-mount-2.8/src/pmvarrun.c
===================================================================
--- libpam-mount-2.8.orig/src/pmvarrun.c	2011-03-21 07:01:19.776566862 +0100
+++ libpam-mount-2.8/src/pmvarrun.c	2011-03-21 07:01:34.040903842 +0100
@@ -453,7 +453,7 @@ static int write_count(int fd, long nv,
 	if (nv <= 0) {
 		if (unlink(filename) >= 0)
 			return true;
-		if (errno != EPERM)
+		if (errno != EPERM && errno != EACCES)
 			l0g("could not unlink %s: %s\n", filename, strerror(errno));
 		/*
 		 * Fallback to just blanking the file. This can happen when
