Browse Source

Mount the USB device with noatime

master
Andrea Luzzardi 17 years ago
parent
commit
93c3291e49
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      pam_usb/src/volume.c

+ 2
- 2
pam_usb/src/volume.c View File

@ -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)


Loading…
Cancel
Save