Lines Matching defs:arg
184 const char *arg = cb->arg;
188 while ((comma = strchr(arg, ',')) != NULL) {
189 if (comma == arg ||
190 !hmark_parse(arg, comma-arg, info, &cb->xflags))
191 xtables_error(PARAMETER_PROBLEM, "Bad type \"%s\"", arg);
192 arg = comma+1;
194 if (!*arg)
199 if (strlen(arg) == 0 ||
200 !hmark_parse(arg, strlen(arg), info, &cb->xflags))
201 xtables_error(PARAMETER_PROBLEM, "Bad type \"%s\"", arg);