diff options
author | Eric Andersen | 1999-10-18 19:02:32 +0000 |
---|---|---|
committer | Eric Andersen | 1999-10-18 19:02:32 +0000 |
commit | bed30e97005aca748a44806399c646633038daa8 (patch) | |
tree | cdba32234f059656b0279b324ae28c742692cd0c /swapoff.c | |
parent | 9b5871888989b16f94cbba5dd304ac444def3afd (diff) | |
download | busybox-bed30e97005aca748a44806399c646633038daa8.zip busybox-bed30e97005aca748a44806399c646633038daa8.tar.gz |
More fixes
Diffstat (limited to 'swapoff.c')
-rw-r--r-- | swapoff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ swapoff_fn(const struct FileInfo * i) { struct mntent entries[100]; int count = 0; - FILE * swapsTable = setmntent("/etc/swaps", "r"); + FILE * swapsTable = setmntent("/proc/swaps", "r"); struct mntent * m; if (!(swapoff(i->source))) { |