From f12d1b33c4006f93e9e94022cb084bb3b2578fa6 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Thu, 31 May 2007 22:40:14 +0000 Subject: [PATCH] Mount the USB device with noatime --- src/volume.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/volume.c b/src/volume.c index 449d71d..b2b16a3 100644 --- a/src/volume.c +++ b/src/volume.c @@ -47,10 +47,10 @@ static int pusb_volume_mount(t_pusb_options *opts, LibHalVolume **volume, log_debug("Attempting to mount device %s with label %s\n", devname, tempname); if (!fs) - snprintf(command, sizeof(command), "pmount -s %s %s", + snprintf(command, sizeof(command), "pmount -A -s %s %s", devname, tempname); else - snprintf(command, sizeof(command), "pmount -s -t %s %s %s", + snprintf(command, sizeof(command), "pmount -A -s -t %s %s %s", fs, devname, tempname); log_debug("Executing \"%s\"\n", command); if (system(command) != 0)