Fix libsbuf sbuf_printf_drain symbol version

(Introduced incorrectly in r347229 earlier today.)

As pointed out by kevans, 1.6 should be used for FreeBSD 13, like r340383.

Submitted by:	kevans
Reported by:	kib
Reviewed by:	jilles
X-MFC-with:	 r347229
Differential Revision:	https://reviews.freebsd.org/D20187
This commit is contained in:
Conrad Meyer 2019-05-07 21:15:11 +00:00
parent 08f5bd9d06
commit 451cddebfa
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=347235
2 changed files with 8 additions and 1 deletions

View file

@ -37,6 +37,9 @@ FBSD_1.4 {
FBSD_1.5 {
sbuf_putbuf;
sbuf_printf_drain;
};
/* Added in FreeBSD 13.x */
FBSD_1.6 {
sbuf_printf_drain;
};

View file

@ -11,3 +11,7 @@ FBSD_1.4 {
FBSD_1.5 {
} FBSD_1.4;
# This version was first added to 13.0-current.
FBSD_1.6 {
} FBSD_1.5;