Lines Matching refs:comma
284 char *comma, *arg;
294 comma = strchr(arg, ',');
297 * If comma first character, then no local identifier
299 if (comma != arg) {
300 if (comma != NULL)
301 *comma = '\0';
313 * If comma last character, then no remote identifier
315 if (comma != NULL && *++comma != '\0') {
316 if (inet_pton(AF_INET6, comma, &addr) != 1 || !VALIDID(addr)) {
317 option_error("Illegal interface identifier (remote): %s", comma);