Do not complain if pmvarrun had no permission to unlink.

Index: libpam-mount-2.11/src/pmvarrun.c
===================================================================
--- libpam-mount-2.11.orig/src/pmvarrun.c	2011-09-12 18:54:13.180993638 +0200
+++ libpam-mount-2.11/src/pmvarrun.c	2011-09-12 18:54:15.601082613 +0200
@@ -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
