From c89c079e5c12bf6afdfed64c7a14d1c5c793ad68 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Tue, 24 Feb 2009 23:02:30 +0000 Subject: [PATCH] * remove temporary debian file * switch filter to unsigned char so the Hex-Numbers provided as borders work properly * Bump library version, THIS IS libcitadel api V2 * Bump version number, THIS IS libcitadel 7.42 --- libcitadel/configure.in | 4 ++-- libcitadel/debian/changelog | 6 ++++++ libcitadel/debian/files | 3 --- libcitadel/lib/stringbuf.c | 6 +++--- 4 files changed, 11 insertions(+), 8 deletions(-) delete mode 100644 libcitadel/debian/files diff --git a/libcitadel/configure.in b/libcitadel/configure.in index 4314eda5c..58f939cd7 100755 --- a/libcitadel/configure.in +++ b/libcitadel/configure.in @@ -5,7 +5,7 @@ dnl dnl Ensure that libcitadel is configured with autoconf 2.52 or newer AC_PREREQ(2.52) -AC_INIT(libcitadel, 7.41, https://uncensored.citadel.org) +AC_INIT(libcitadel, 7.42, https://uncensored.citadel.org) AC_CONFIG_SRCDIR(Makefile.in) AC_CONFIG_AUX_DIR(conftools) @@ -22,7 +22,7 @@ dnl dnl If the API changes incompatibly set LIBAGE back to 0 dnl -LIBCURRENT=1 +LIBCURRENT=2 LIBREVISION=0 LIBAGE=0 diff --git a/libcitadel/debian/changelog b/libcitadel/debian/changelog index 54d88bd7a..d1c0db335 100644 --- a/libcitadel/debian/changelog +++ b/libcitadel/debian/changelog @@ -1,3 +1,9 @@ +libcitadel (7.42-71) unstable; urgency=low + + * Beta release + + -- Wilfried Goesgens Wed, 25 Feb 2009 00:00:00 +0002 + libcitadel (7.41-70) unstable; urgency=low * Beta release diff --git a/libcitadel/debian/files b/libcitadel/debian/files deleted file mode 100644 index d2ac0561c..000000000 --- a/libcitadel/debian/files +++ /dev/null @@ -1,3 +0,0 @@ -libcitadel1_7.38-8_i386.deb libs optional -libcitadel1-dbg_7.38-8_i386.deb libdevel optional -libcitadel-dev_7.38-8_i386.deb libdevel optional diff --git a/libcitadel/lib/stringbuf.c b/libcitadel/lib/stringbuf.c index ca18d0f84..b7dc903c8 100644 --- a/libcitadel/lib/stringbuf.c +++ b/libcitadel/lib/stringbuf.c @@ -1713,11 +1713,11 @@ int StrBufDecodeBase64(StrBuf *Buf) */ int StrBufSanitizeAscii(StrBuf *Buf, const char Mute) { - char *pch; + unsigned char *pch; if (Buf == NULL) return -1; - pch = Buf->buf; - while (pch < Buf->buf + Buf->BufUsed) { + pch = (unsigned char *)Buf->buf; + while (pch < (unsigned char *)Buf->buf + Buf->BufUsed) { if ((*pch < 0x20) || (*pch > 0x7F)) *pch = Mute; pch ++; -- 2.30.2