mirror of
https://github.com/sheumann/hush.git
synced 2025-01-03 00:31:16 +00:00
mount: fstabname needs to be const char*
This commit is contained in:
parent
23514fe251
commit
85f9e32f7f
@ -1432,7 +1432,8 @@ int mount_main(int argc, char **argv)
|
|||||||
enum { OPT_ALL = 0x8 };
|
enum { OPT_ALL = 0x8 };
|
||||||
|
|
||||||
char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
|
char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
|
||||||
char *opt_o, *fstabname;
|
char *opt_o;
|
||||||
|
const char *fstabname;
|
||||||
FILE *fstab;
|
FILE *fstab;
|
||||||
int i, j, rc = 0;
|
int i, j, rc = 0;
|
||||||
unsigned long opt;
|
unsigned long opt;
|
||||||
@ -1526,7 +1527,7 @@ int mount_main(int argc, char **argv)
|
|||||||
|
|
||||||
fstab = setmntent(fstabname,"r");
|
fstab = setmntent(fstabname,"r");
|
||||||
if (!fstab)
|
if (!fstab)
|
||||||
bb_perror_msg_and_die("cannot read %s",fstabname);
|
bb_perror_msg_and_die("cannot read %s", fstabname);
|
||||||
|
|
||||||
// Loop through entries until we find what we're looking for.
|
// Loop through entries until we find what we're looking for.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user