* remove temporary debian file
authorWilfried Göesgens <willi@citadel.org>
Tue, 24 Feb 2009 23:02:30 +0000 (23:02 +0000)
committerWilfried Göesgens <willi@citadel.org>
Tue, 24 Feb 2009 23:02:30 +0000 (23:02 +0000)
* 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
libcitadel/debian/changelog
libcitadel/debian/files [deleted file]
libcitadel/lib/stringbuf.c

index 4314eda5ce3828bf542747da5a4f3d3a5eae87da..58f939cd712b1b0bad912e87c8c84906c251cbb3 100755 (executable)
@@ -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
 
index 54d88bd7a634ddc3d0bce6d909bc8e7c197b6239..d1c0db335248fb0b05df206714cc36a638342563 100644 (file)
@@ -1,3 +1,9 @@
+libcitadel (7.42-71) unstable; urgency=low
+
+  * Beta release
+
+ -- Wilfried Goesgens <w.goesgens@outgesourced.org>  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 (file)
index d2ac056..0000000
+++ /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
index ca18d0f846657c9b9d3f1d72ab4245f2f193b2a4..b7dc903c8e392394da2b604c9278727552098fad 100644 (file)
@@ -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 ++;