Home | History | Annotate | Download | only in pppd

Lines Matching refs:comma

326     char *comma, *arg, c;
335 if ((comma = strchr(arg, ',')) == NULL)
336 comma = arg + strlen(arg);
339 * If comma first character, then no local identifier
341 if (comma != arg) {
342 c = *comma;
343 *comma = '\0';
355 *comma = c;
359 * If comma last character, the no remote identifier
361 if (*comma != 0 && *++comma != '\0') {
362 if (inet_pton(AF_INET6, comma, &addr) == 0 || !VALIDID(addr)) {
363 option_error("Illegal interface identifier (remote): %s", comma);