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:
00d7d6c
)
- fix warning about discarding qualifiers in initialization
author
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Tue, 12 Sep 2006 13:25:16 +0000
(13:25 -0000)
committer
Bernhard Reutner-Fischer
<rep.dot.nop@gmail.com>
Tue, 12 Sep 2006 13:25:16 +0000
(13:25 -0000)
libbb/run_parts.c
patch
|
blob
|
history
diff --git
a/libbb/run_parts.c
b/libbb/run_parts.c
index 7bdae5b3821bb5ecfca7ab5750e13273851f8977..c1a45e3d908b8edf5dc5ac5d4822b1553131b567 100644
(file)
--- a/
libbb/run_parts.c
+++ b/
libbb/run_parts.c
@@
-27,7
+27,7
@@
*/
static int valid_name(const struct dirent *d)
{
- char *c = d->d_name;
+ c
onst c
har *c = d->d_name;
while (*c) {
if (!isalnum(*c) && (*c != '_') && (*c != '-')) {