Pass sbuf to the kernel routines to match new kernel code.

Sponsored by:	DARPA & NAI Labs
This commit is contained in:
Poul-Henning Kamp 2002-10-05 13:11:01 +00:00
parent 790a8088d0
commit a05c5b8c1a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104510

View File

@ -60,7 +60,9 @@ conff(char *file)
f = fopen(s, "w");
if (f == NULL)
err(1, s);
sb = g_conf();
sb = sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND);
sbuf_clear(sb);
g_confxml(sb);
fputs(sbuf_data(sb), f);
fclose(f);
free(s);
@ -181,7 +183,9 @@ sdumpf(char *file)
f = fopen(s, "w");
if (f == NULL)
err(1, s);
sb = g_confdot();
sb = sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND);
sbuf_clear(sb);
g_confdot(sb);
fprintf(f, "%s", sbuf_data(sb));
fclose(f);
free(s);