mirror of https://github.com/mirror/busybox.git
Changed exit code from -1 to 0 when busybox is invoked with no args.
(Closes bug #1114.)1_00_stable_10817
parent
39842defda
commit
016771834a
|
@ -166,7 +166,7 @@ int busybox_main(int argc, char **argv)
|
|||
}
|
||||
}
|
||||
fprintf(stderr, "\n\n");
|
||||
exit(-1);
|
||||
exit(0);
|
||||
}
|
||||
|
||||
/* Flag that we've been here already */
|
||||
|
|
Loading…
Reference in New Issue