Your message dated Tue, 3 Jul 2007 16:30:36 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Removed
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: libapache-mod-dav
Version: 1.0.3-10
Severity: important
Tags: patch
The UNLOCK method fails on 64-bit archs. A patch is available at:
http://mailman.lyra.org/pipermail/dav-dev/2003-February/004410.html
I've tested this on my linux/alpha system and this patch works fine.
-- System Information:
Debian Release: 3.0
APT prefers unstable
APT policy: (500, 'unstable'), (500, 'testing')
Architecture: alpha
Kernel: Linux 2.6.7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages libapache-mod-dav depends on:
ii apache-common 1.3.33-2 Support files for all Apache webse
ii libc6.1 2.3.2.ds1-16 GNU C Library: Shared libraries an
ii libxmltok1 1.2-2 XML Parser Toolkit, runtime librar
-- no debconf information
--- ./dav_util.c.64 Mon Nov 5 07:08:51 2001
+++ ./dav_util.c Sun Jan 27 19:34:28 2002
@@ -546,7 +546,7 @@
array_header *namespaces,
int *ns_map,
const char **pbuf,
- size_t *psize)
+ int *psize)
{
/* get the exact size, plus a null terminator */
size_t size = dav_elem_size(elem, style, namespaces, ns_map) + 1;
--- ./mod_dav.h.64 Mon Nov 5 11:52:21 2001
+++ ./mod_dav.h Sun Jan 27 19:34:28 2002
@@ -715,7 +715,7 @@
array_header *namespaces,
int *ns_map,
const char **pbuf,
- size_t *psize
+ int *psize
);
#define DAV_X2T_FULL 0 /* start tag, contents, end tag */
#define DAV_X2T_INNER 1 /* contents only */
@@ -909,7 +909,7 @@
typedef struct
{
char *dptr;
- size_t dsize;
+ int dsize;
} dav_datum;
/* hook functions to enable pluggable databases */
--- ./dav_opaquelock.c.64 Sun Jan 27 19:34:38 2002
+++ ./dav_opaquelock.c Sun Jan 27 19:35:08 2002
@@ -116,10 +116,10 @@
}
/* convert a pair of hex digits to an integer value [0,255] */
-static int dav_parse_hexpair(const char *s)
+static unsigned int dav_parse_hexpair(const char *s)
{
- int result;
- int temp;
+ unsigned int result;
+ unsigned int temp;
#ifdef CHARSET_EBCDIC
ebcdic2ascii(s, s, 2);
--- End Message ---
--- Begin Message ---
This package has been removed from Debian unstable. I'm therefore
closing this bug report. The package has been removed because it
depends on depracated apache1.
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---