aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-19 14:14:12 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-19 14:14:12 +0000
commit2320c9a527043ba5ef425dc6639a729d75352cb5 (patch)
tree248afb52bd9adf78d1183f1e2e01aaa6791e4ceb
parent9690ba7953684752f283cb4e030ed222208e9411 (diff)
downloadbusybox-w32-2320c9a527043ba5ef425dc6639a729d75352cb5.tar.gz
busybox-w32-2320c9a527043ba5ef425dc6639a729d75352cb5.tar.bz2
busybox-w32-2320c9a527043ba5ef425dc6639a729d75352cb5.zip
mount: fstabname needs to be const char*
git-svn-id: svn://busybox.net/trunk/busybox@16148 69ca8d6d-28ef-0310-b511-8ec308f3f277
-rw-r--r--util-linux/mount.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/util-linux/mount.c b/util-linux/mount.c
index 888e6d22f..ab20ab9fc 100644
--- a/util-linux/mount.c
+++ b/util-linux/mount.c
@@ -1432,7 +1432,8 @@ int mount_main(int argc, char **argv)
1432 enum { OPT_ALL = 0x8 }; 1432 enum { OPT_ALL = 0x8 };
1433 1433
1434 char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0; 1434 char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
1435 char *opt_o, *fstabname; 1435 char *opt_o;
1436 const char *fstabname;
1436 FILE *fstab; 1437 FILE *fstab;
1437 int i, j, rc = 0; 1438 int i, j, rc = 0;
1438 unsigned long opt; 1439 unsigned long opt;
@@ -1526,7 +1527,7 @@ int mount_main(int argc, char **argv)
1526 1527
1527 fstab = setmntent(fstabname,"r"); 1528 fstab = setmntent(fstabname,"r");
1528 if (!fstab) 1529 if (!fstab)
1529 bb_perror_msg_and_die("cannot read %s",fstabname); 1530 bb_perror_msg_and_die("cannot read %s", fstabname);
1530 1531
1531 // Loop through entries until we find what we're looking for. 1532 // Loop through entries until we find what we're looking for.
1532 1533