Date: Thu, 2 Mar 2017 01:39:23 +0000 (UTC) From: Scott Long <scottl@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r314533 - head/lib/libsbuf Message-ID: <201703020139.v221dNsx020974@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: scottl Date: Thu Mar 2 01:39:23 2017 New Revision: 314533 URL: https://svnweb.freebsd.org/changeset/base/314533 Log: Expose the sbuf_putbuf() symbol to libsbuf. There are a few other symbols that are present but not exposed, like get/set/clear flags, not sure if they need to be exposed at this point. Sponsored by: Netflix Modified: head/lib/libsbuf/Symbol.map head/lib/libsbuf/Version.def Modified: head/lib/libsbuf/Symbol.map ============================================================================== --- head/lib/libsbuf/Symbol.map Thu Mar 2 01:28:15 2017 (r314532) +++ head/lib/libsbuf/Symbol.map Thu Mar 2 01:39:23 2017 (r314533) @@ -31,3 +31,8 @@ FBSD_1.3 { FBSD_1.4 { sbuf_hexdump; }; + +FBSD_1.5 { + sbuf_putbuf; +}; + Modified: head/lib/libsbuf/Version.def ============================================================================== --- head/lib/libsbuf/Version.def Thu Mar 2 01:28:15 2017 (r314532) +++ head/lib/libsbuf/Version.def Thu Mar 2 01:39:23 2017 (r314533) @@ -8,3 +8,6 @@ FBSD_1.3 { FBSD_1.4 { } FBSD_1.3; + +FBSD_1.5 { +} FBSD_1.4;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703020139.v221dNsx020974>