Home
last modified time | relevance | path

Searched refs:conflen (Results 1 – 1 of 1) sorted by relevance

/openbsd/src/usr.sbin/sasyncd/
Dconf.y48 int conflen = 0; variable
296 for (p = confptr; p < confbuf + conflen && *p; p++) in yylex()
298 if (p == confbuf + conflen) in yylex()
376 conflen = st.st_size; in conf_parse_file()
377 buf = malloc(conflen + 1); in conf_parse_file()
379 log_err("malloc(%d) failed", conflen + 1); in conf_parse_file()
384 if (read(fd, buf, conflen) != conflen) { in conf_parse_file()
393 buf[conflen] = (char)0; in conf_parse_file()
394 for (s = buf, d = s; s < buf + conflen && *s; s++) { in conf_parse_file()
398 while (*s != '\n' && s < buf + conflen) in conf_parse_file()
[all …]