getopt_ulflags -> getopt32.
[oweals/busybox.git] / shell / bbsh.c
index 2194bdad63a28896a110493a3e9a364e70333a69..77e186d35b1790bb1dca83c1f8e79e53bfb85b29 100644 (file)
@@ -203,7 +203,7 @@ int bbsh_main(int argc, char *argv[])
        char *command=NULL;
        FILE *f;
 
-       bb_getopt_ulflags(argc, argv, "c:", &command);
+       getopt32(argc, argv, "c:", &command);
 
        f = argv[optind] ? xfopen(argv[optind],"r") : NULL;
        if (command) handle(command);