aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/hv/hv_vss_daemon.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/hv/hv_vss_daemon.c b/tools/hv/hv_vss_daemon.c
index dc73a897d8c6..712cfc516c65 100644
--- a/tools/hv/hv_vss_daemon.c
+++ b/tools/hv/hv_vss_daemon.c
@@ -88,6 +88,8 @@ static int vss_operate(int operation)
88 while((ent = getmntent(mounts))) { 88 while((ent = getmntent(mounts))) {
89 if (strncmp(ent->mnt_fsname, match, strlen(match))) 89 if (strncmp(ent->mnt_fsname, match, strlen(match)))
90 continue; 90 continue;
91 if (strcmp(ent->mnt_type, "iso9660") == 0)
92 continue;
91 if (strcmp(ent->mnt_dir, "/") == 0) { 93 if (strcmp(ent->mnt_dir, "/") == 0) {
92 root_seen = 1; 94 root_seen = 1;
93 continue; 95 continue;