Hi, please remove the debug printf that sneaked in the commit that
resulted from the patch in this bugreport.
https://anonscm.debian.org/cgit/pmount/pmount.git/commit/?h=maintain-0.9.23&id=ca7fbdd81cdb3fbc6e50d72d2ec1312bdf78897a
@@ -704,6 +711,8 @@ main( int argc, char** argv )
case 'c': iocharset = optarg; break;
+ case OPT_UTC: utc = 1; printf("coucou\n"); break;
^^^^^^^^^^^^^^^^^^^^^^^
Attaching an advanced patch ;)
diff --git a/src/pmount.c b/src/pmount.c
index d367e05..4678dff 100644
--- a/src/pmount.c
+++ b/src/pmount.c
@@ -711,7 +711,7 @@ main( int argc, char** argv )
case 'c': iocharset = optarg; break;
- case OPT_UTC: utc = 1; printf("coucou\n"); break;
+ case OPT_UTC: utc = 1; break;
case 'u': umask = optarg; break;