diff options
Diffstat (limited to 'sutils')
-rw-r--r-- | sutils/swapon.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sutils/swapon.c b/sutils/swapon.c index 1d0d4353..40f5a205 100644 --- a/sutils/swapon.c +++ b/sutils/swapon.c @@ -424,9 +424,7 @@ swaponoff (const char *file, int add, int skipnotexisting) { /* The default pager does not support the new protocol. We tried it in a previous call (below) and got MIG_BAD_ID. */ - char pname[sizeof "/dev/" + strlen (store->name) + 1]; - strcpy (stpcpy (pname, "/dev/"), store->name); - err = default_pager_paging_file (def_pager, dev_master, pname, add); + err = default_pager_paging_file (def_pager, dev_master, file, add); } else { @@ -439,7 +437,7 @@ swaponoff (const char *file, int add, int skipnotexisting) runs[j++] = store->runs[i].length; } err = default_pager_paging_storage (def_pager, store->port, - runs, j, store->name, add); + runs, j, file, add); if (err == MIG_BAD_ID) { /* The default pager does not support the new protocol. @@ -580,7 +578,7 @@ main (int argc, char *argv[]) name = names; for (i = 0; i < nfree; i++) { - printf ("/dev/%s\tpartition\t%zuM\t%zuM\t-1\n", + printf ("%s\tpartition\t%zuM\t%zuM\t-1\n", name, size[i] >> 20, (size[i] - free[i]) >> 20); name = argz_next (names, names_len, name); } |