diff options
author | Dimitri John Ledkov <dimitri.j.ledkov@intel.com> | 2015-05-13 14:43:04 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-05-13 15:48:28 +0200 |
commit | f00929ad622c978f8ad83590a15a765b4beecac9 (patch) | |
tree | e5f05492f4065582e1e3fa1d079452d8aa0bd470 /src/core/mount.h | |
parent | 7ba2711d3fd283c389db2a1e7b9598ba9f0dac0c (diff) |
Default to /usr/bin/u?mount, configurable, rather than hard-coded /bin/u?mount.
Diffstat (limited to 'src/core/mount.h')
-rw-r--r-- | src/core/mount.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/mount.h b/src/core/mount.h index a01e6da194..280ea0d638 100644 --- a/src/core/mount.h +++ b/src/core/mount.h @@ -28,8 +28,8 @@ typedef struct Mount Mount; typedef enum MountState { MOUNT_DEAD, - MOUNT_MOUNTING, /* /bin/mount is running, but the mount is not done yet. */ - MOUNT_MOUNTING_DONE, /* /bin/mount is running, and the mount is done. */ + MOUNT_MOUNTING, /* /usr/bin/mount is running, but the mount is not done yet. */ + MOUNT_MOUNTING_DONE, /* /usr/bin/mount is running, and the mount is done. */ MOUNT_MOUNTED, MOUNT_REMOUNTING, MOUNT_UNMOUNTING, |