summaryrefslogtreecommitdiff
path: root/x11-toolkits/xview
diff options
context:
space:
mode:
authorDaniel Eischen <deischen@FreeBSD.org>2007-05-22 04:32:10 +0000
committerDaniel Eischen <deischen@FreeBSD.org>2007-05-22 04:32:10 +0000
commit52f82a19f3cd75cfacc186334f4094a93c88761a (patch)
tree26a6984cbb935ef3873b4b82cd1601c601d39070 /x11-toolkits/xview
parent- Update to 2.05 and correct pkg-plist (diff)
Use vfscanf() instead of __svfscanf() which is a function internal to
libc. Approved by: portmgr (linimon)
Notes
Notes: svn path=/head/; revision=191598
Diffstat (limited to 'x11-toolkits/xview')
-rw-r--r--x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_again.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_again.c b/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_again.c
index fe1e5ac5ccee..23bf8dfd4545 100644
--- a/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_again.c
+++ b/x11-toolkits/xview/files/patch-lib+libxview+textsw+txt_again.c
@@ -89,7 +89,7 @@
+ _strbuf._ub._base = NULL;
+ _strbuf._lb._base = NULL;
+ VA_START(args, fmt);
-+ result = __svfscanf(&_strbuf, fmt, args);
++ result = vfscanf(&_strbuf, fmt, args);
+ va_end(args);
+ TXTSW_STRING_BASE(ptr_to_string) = (char *) _strbuf._p;
+ return (result);