summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Harpin <development@landsofshadow.co.uk>2015-06-26 18:16:35 +0100
committerAlex Harpin <development@landsofshadow.co.uk>2015-06-26 18:16:35 +0100
commit0aa5e6a671db3dec82392b324cd6cd8b599943c0 (patch)
tree828a8f82df3808c56df1b7c95c6aba080215599b
parent596e36892bf7045b5f06047c51532a6147b35bb3 (diff)
downloadvyatta-cfg-0aa5e6a671db3dec82392b324cd6cd8b599943c0.tar.gz
vyatta-cfg-0aa5e6a671db3dec82392b324cd6cd8b599943c0.zip
vyatta-cfg: correct UnionfsCstore::do_umount error message
-rw-r--r--src/cstore/unionfs/cstore-unionfs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cstore/unionfs/cstore-unionfs.cpp b/src/cstore/unionfs/cstore-unionfs.cpp
index f253454..379f3bf 100644
--- a/src/cstore/unionfs/cstore-unionfs.cpp
+++ b/src/cstore/unionfs/cstore-unionfs.cpp
@@ -1585,7 +1585,7 @@ UnionfsCstore::do_umount(const FsPath& mdir)
dup2(commpipe[0],0);
close(commpipe[1]);
if (execl(fusermount_path, fusermount_prog, fusermount_umount, mdir.path_cstr(), NULL) != 0) {
- output_internal("union mount failed [%s][%s]\n",
+ output_internal("union umount failed [%s][%s]\n",
strerror(errno), mdir.path_cstr());
return false;
}