Lines Matching refs:pc
51 poptContext pc = NULL;
72 pc = poptGetContext(NULL, argc, argv, long_options, 0);
73 poptSetOtherOptionHelp(pc, "GROUPNAME");
74 while ((ret = poptGetNextOpt(pc)) > 0) {
77 addgroups = poptGetOptArg(pc);
79 BAD_POPT_PARAMS(pc, _("Specify group to add to\n"),
85 rmgroups = poptGetOptArg(pc);
87 BAD_POPT_PARAMS(pc, _("Specify group to remove from\n"),
95 BAD_POPT_PARAMS(pc, poptStrerror(ret), ret, fini);
99 pc_groupname = poptGetArg(pc);
101 BAD_POPT_PARAMS(pc, _("Specify group to modify\n"), ret, fini);
278 poptFreeContext(pc);