getopt_ulflags -> getopt32.
[oweals/busybox.git] / procps / pidof.c
index c686245ea023f6757b24de0f6f8b690190bc7e0c..e6c954843571de7087d815e9610ca59b22cc8d8d 100644 (file)
@@ -39,11 +39,11 @@ int pidof_main(int argc, char **argv)
        unsigned long int opt;
 #if ENABLE_FEATURE_PIDOF_OMIT
        llist_t *omits = NULL; /* list of pids to omit */
-       bb_opt_complementally = _OMIT_COMPL("o::");
+       opt_complementary = _OMIT_COMPL("o::");
 #endif
 
        /* do unconditional option parsing */
-       opt = bb_getopt_ulflags(argc, argv,
+       opt = getopt32(argc, argv,
                                        _SINGLE_COMPL("s") _OMIT_COMPL("o:")
                                        _OMIT(&omits));