summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2008-08-09 11:14:05 +0000
committerdes <des@FreeBSD.org>2008-08-09 11:14:05 +0000
commitc2c1c946ae25855c779b03f9b612cfa2750a94aa (patch)
treea49f25cd0b20b9dc2d2e2f419d89d33aad927f68 /lib
parent50ef01bba12b948cfb2dc282f8c080a15957acc6 (diff)
downloadFreeBSD-src-c2c1c946ae25855c779b03f9b612cfa2750a94aa.zip
FreeBSD-src-c2c1c946ae25855c779b03f9b612cfa2750a94aa.tar.gz
Add sbuf_new_auto as a shortcut for the very common case of creating a
completely dynamic sbuf. Obtained from: Varnish MFC after: 2 weeks
Diffstat (limited to 'lib')
-rw-r--r--lib/libgeom/geom_xml2tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libgeom/geom_xml2tree.c b/lib/libgeom/geom_xml2tree.c
index 08fb394..1c7e22b 100644
--- a/lib/libgeom/geom_xml2tree.c
+++ b/lib/libgeom/geom_xml2tree.c
@@ -68,7 +68,7 @@ StartElement(void *userData, const char *name, const char **attr)
mt = userData;
mt->level++;
- mt->sbuf[mt->level] = sbuf_new(NULL, NULL, 0, SBUF_AUTOEXTEND);
+ mt->sbuf[mt->level] = sbuf_new_auto();
id = NULL;
ref = NULL;
for (i = 0; attr[i] != NULL; i += 2) {
OpenPOWER on IntegriCloud