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.9/src/pmvarrun.c
===================================================================
--- libpam-mount-2.9.orig/src/pmvarrun.c	2011-04-07 19:28:50.490640794 +0200
+++ libpam-mount-2.9/src/pmvarrun.c	2011-04-07 19:29:00.394882386 +0200
@@ -113,7 +113,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') {
