projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
23514fe
)
mount: fstabname needs to be const char*
author
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 19 Sep 2006 14:14:12 +0000
(14:14 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Tue, 19 Sep 2006 14:14:12 +0000
(14:14 -0000)
util-linux/mount.c
patch
|
blob
|
history
diff --git
a/util-linux/mount.c
b/util-linux/mount.c
index 888e6d22fb6aaaf40d285c3ea8a0a562df65f636..ab20ab9fc506b53f5d525fe5da808e573aebbb69 100644
(file)
--- a/
util-linux/mount.c
+++ b/
util-linux/mount.c
@@
-1432,7
+1432,8
@@
int mount_main(int argc, char **argv)
enum { OPT_ALL = 0x8 };
char *cmdopts = xstrdup(""), *fstype=0, *storage_path=0;
- char *opt_o, *fstabname;
+ char *opt_o;
+ const char *fstabname;
FILE *fstab;
int i, j, rc = 0;
unsigned long opt;
@@
-1526,7
+1527,7
@@
int mount_main(int argc, char **argv)
fstab = setmntent(fstabname,"r");
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.