Lines Matching refs:vbuf
485 char *buf, *vbuf; in read_startd_config() local
630 vbuf = startd_alloc(max_scf_value_size); in read_startd_config()
693 if (scf_value_get_astring(val, vbuf, max_scf_value_size) < 0) in read_startd_config()
697 if (strcmp("verbose", vbuf) == 0) { in read_startd_config()
700 } else if (strcmp("debug", vbuf) == 0) { in read_startd_config()
703 } else if (strcmp("quiet", vbuf) == 0) { in read_startd_config()
707 "value '%s' ignored\n", vbuf); in read_startd_config()
711 if (strcmp("quiet", vbuf) == 0) { in read_startd_config()
713 } else if (strcmp("verbose", vbuf) == 0) { in read_startd_config()
718 "ignored\n", vbuf); in read_startd_config()
724 startd_free(vbuf, max_scf_value_size); in read_startd_config()