]> err.no Git - util-linux/commitdiff
libmount: update tests
authorKarel Zak <kzak@redhat.com>
Tue, 10 Aug 2010 13:26:59 +0000 (15:26 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 3 Jan 2011 11:28:41 +0000 (12:28 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
shlibs/mount/src/optstr.c
shlibs/mount/src/utils.c

index 3308a1a0e087c8b548f7758d95755020416d1a92..853f5f9b08e4b4f5f70a3acb2b263ed74c300458 100644 (file)
@@ -491,7 +491,7 @@ int test_split(struct mtest *ts, int argc, char *argv[])
 
        optstr = strdup(argv[1]);
 
-       if (mnt_split_optstr(optstr, &user, &vfs, &fs) == 0) {
+       if (mnt_split_optstr(optstr, &user, &vfs, &fs, 0, 0) == 0) {
                printf("user : %s\n", user);
                printf("vfs  : %s\n", vfs);
                printf("fs   : %s\n", fs);
index 15785df2af0045e4b429f1c5e7998e4cea2eba24..423d942b80a06d794b3578fd14bd471d84bb4916 100644 (file)
@@ -487,7 +487,7 @@ int test_mountpoint(struct mtest *ts, int argc, char *argv[])
 int test_fsroot(struct mtest *ts, int argc, char *argv[])
 {
        char *path = canonicalize_path(argv[1]),
-            *mnt = path ? mnt_get_fs_root(path) : NULL;
+            *mnt = path ? mnt_get_fs_root(path, NULL) : NULL;
 
        printf("%s: %s\n", argv[1], mnt ? : "unknown");
        free(mnt);