Allow numbers at the beginning of user names in pmvarrun.
Note that this patch is Debian-specific; other distributions might not
support this.

Index: libpam-mount-2.14~gitd1d6f871/src/pmvarrun.c
===================================================================
--- libpam-mount-2.14~gitd1d6f871.orig/src/pmvarrun.c	2012-03-31 14:22:20.662079636 +0200
+++ libpam-mount-2.14~gitd1d6f871/src/pmvarrun.c	2012-03-31 14:22:23.686066897 +0200
@@ -117,7 +117,7 @@ static bool valid_username(const char *n
 	 * more characters.
 	 */
 	if (!((*n >= 'A' && *n <= 'Z') || (*n >= 'a' && *n <= 'z') ||
-	    *n == '_'))
+	    (*n >= '0' && *n <= '9') || *n == '_'))
 		return false;
 
 	while (*n != '\0') {
