Name: newt
%define version 0.40
Version: %{version}
-Release: 8
+Release: 9
Copyright: LGPL
Group: System Environment/Libraries
Source: ftp://ftp.redhat.com/pub/redhat/code/newt/newt-%{version}.tar.gz
%postun -p /sbin/ldconfig
%changelog
+* Fri Apr 9 1999 Matt Wilson <msw@redhat.com>
+- fixed a glibc related bug in reflow that was truncating all text to 1000
+chars
+
* Fri Apr 09 1999 Matt Wilson <msw@redhat.com>
- fixed bug that made newt apps crash when you hit <insert> followed by lots
of keys
if (buf) free(buf);
buf = malloc(size);
i = vsnprintf(buf, size, message, args);
- } while (i == size || i == -1);
+ } while (i >= size || i == -1);
flowedText = newtReflowText(buf, 35, 5, 5, &width, &height);
if (height > 6) {