diff options
Diffstat (limited to 'modules/mount_nfs.c')
-rw-r--r-- | modules/mount_nfs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mount_nfs.c b/modules/mount_nfs.c index c64af9e..a556841 100644 --- a/modules/mount_nfs.c +++ b/modules/mount_nfs.c @@ -147,11 +147,11 @@ int mount_mount(const char *root, const char *name, int name_len, if ( options ) { syslog(LOG_DEBUG, MODPREFIX "calling mount -t nfs -o %s %s %s", options, what, fullpath); - err = spawnl(LOG_NOTICE, _PATH_MOUNT, _PATH_MOUNT, "-t", "nfs", "-o", + err = spawnl(LOG_NOTICE, PATH_MOUNT, PATH_MOUNT, "-t", "nfs", "-o", options, what, fullpath, NULL); } else { syslog(LOG_DEBUG, MODPREFIX "calling mount -t nfs %s %s", what, fullpath); - err = spawnl(LOG_NOTICE, _PATH_MOUNT, _PATH_MOUNT, "-t", "nfs", + err = spawnl(LOG_NOTICE, PATH_MOUNT, PATH_MOUNT, "-t", "nfs", what, fullpath, NULL); } if ( err ) { |