Your message dated Tue, 08 Mar 2005 23:41:18 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#287741: fixed in mydns 1.0.0-1
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)
--------------------------------------
Received: (at submit) by bugs.debian.org; 29 Dec 2004 20:19:21 +0000
>From [EMAIL PROTECTED] Wed Dec 29 12:19:20 2004
Return-path: <[EMAIL PROTECTED]>
Received: from d007021.adsl.hansenet.de (localhost.localdomain) [80.171.7.21]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CjkHw-0007xd-00; Wed, 29 Dec 2004 12:19:20 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CjkN6-0007zT-Pd; Wed, 29 Dec 2004 21:24:42 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: mydns: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment
Message-Id: <[EMAIL PROTECTED]>
Date: Wed, 29 Dec 2004 21:24:42 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: mydns
Severity: normal
Tags: patch
When building 'mydns' on amd64 with gcc-4.0,
I get the following error:
if x86_64-linux-gcc -DLOCALEDIR=\"/usr/share/locale\" -I. -I. -I../..
-I../../lib -I../../src/lib -I../../intl -I/usr/include/mysql -g -Wall -O2
-fomit-frame-pointer -finline-functions -ffast-math -funsigned-char -MT cache.o
-MD -MP -MF ".deps/cache.Tpo" -c -o cache.o cache.c; \
then mv -f ".deps/cache.Tpo" ".deps/cache.Po"; else rm -f ".deps/cache.Tpo";
exit 1; fi
cache.c: In function 'cache_status':
cache.c:244: warning: format '%u' expects type 'unsigned int', but argument 9
has type 'size_t'
cache.c:244: warning: format '%u' expects type 'unsigned int', but argument 10
has type 'size_t'
cache.c: In function 'cache_free_node':
cache.c:336: error: invalid lvalue in assignment
cache.c:336: warning: value computed is not used
cache.c:340: error: invalid lvalue in assignment
cache.c:340: warning: value computed is not used
make[4]: *** [cache.o] Error 1
make[4]: Leaving directory `/mydns-0.11.0/src/mydns'
With the attached patch 'mydns' can be compiled
on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/mydns-0.11.0/src/mydns/cache.c ./src/mydns/cache.c
--- ../tmp-orig/mydns-0.11.0/src/mydns/cache.c 2004-05-21 13:32:18.000000000
+0200
+++ ./src/mydns/cache.c 2004-12-29 15:49:09.573043744 +0100
@@ -333,11 +333,11 @@
}
else if (cur->type == DNS_QTYPE_SOA)
{
- mydns_soa_free((MYDNS_SOA *)cur->data);
+ mydns_soa_free(cur->data);
}
else
{
- mydns_rr_free((MYDNS_RR *)cur->data);
+ mydns_rr_free(cur->data);
}
if (cur == Cache->nodes[hash])
/* Head of node? */
diff -urN ../tmp-orig/mydns-0.11.0/src/mydns/rr.c ./src/mydns/rr.c
--- ../tmp-orig/mydns-0.11.0/src/mydns/rr.c 2004-05-21 13:32:18.000000000
+0200
+++ ./src/mydns/rr.c 2004-12-29 15:49:30.574850984 +0100
@@ -45,10 +45,10 @@
switch (p->rrtype)
{
case DNS_RRTYPE_SOA:
- mydns_soa_free((MYDNS_SOA *)p->rr);
+ mydns_soa_free(p->rr);
break;
case DNS_RRTYPE_RR:
- mydns_rr_free((MYDNS_RR *)p->rr);
+ mydns_rr_free(p->rr);
break;
}
Free(p);
---------------------------------------
Received: (at 287741-close) by bugs.debian.org; 9 Mar 2005 04:46:32 +0000
>From [EMAIL PROTECTED] Tue Mar 08 20:46:32 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1D8t5c-0002fu-00; Tue, 08 Mar 2005 20:46:32 -0800
Received: from rdonald by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1D8t0Y-0001ln-00; Tue, 08 Mar 2005 23:41:18 -0500
From: Philipp Kern <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#287741: fixed in mydns 1.0.0-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Randall Donald <[EMAIL PROTECTED]>
Date: Tue, 08 Mar 2005 23:41:18 -0500
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: mydns
Source-Version: 1.0.0-1
We believe that the bug you reported is fixed in the latest version of
mydns, which is due to be installed in the Debian FTP archive:
mydns-common_1.0.0-1_all.deb
to pool/main/m/mydns/mydns-common_1.0.0-1_all.deb
mydns-mysql_1.0.0-1_i386.deb
to pool/main/m/mydns/mydns-mysql_1.0.0-1_i386.deb
mydns-pgsql_1.0.0-1_i386.deb
to pool/main/m/mydns/mydns-pgsql_1.0.0-1_i386.deb
mydns_1.0.0-1.diff.gz
to pool/main/m/mydns/mydns_1.0.0-1.diff.gz
mydns_1.0.0-1.dsc
to pool/main/m/mydns/mydns_1.0.0-1.dsc
mydns_1.0.0.orig.tar.gz
to pool/main/m/mydns/mydns_1.0.0.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Philipp Kern <[EMAIL PROTECTED]> (supplier of updated mydns package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Fri, 14 Jan 2005 19:29:50 +0100
Source: mydns
Binary: mydns-pgsql mydns-common mydns-mysql
Architecture: source i386 all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Philipp Kern <[EMAIL PROTECTED]>
Changed-By: Philipp Kern <[EMAIL PROTECTED]>
Description:
mydns-common - DNS server using a SQL database for data storage
mydns-mysql - DNS server using MySQL for data storage
mydns-pgsql - DNS server using PostgreSQL for data storage
Closes: 287741
Changes:
mydns (1.0.0-1) unstable; urgency=low
.
* New upstream release.
* Added an additional depend on virtual-mysql-client to fix conflicts
with new MySQL versions.
.
mydns (0.11.0-9) unstable; urgency=low
.
* Added debconf-updatepo to debian/rules:clean.
* Applied a patch for MyDNS to fix FTBFS on amd64 with gcc-4.0.
(Thanks to Andreas Jochens <[EMAIL PROTECTED]>, Closes: #287741)
.
mydns (0.11.0-8) unstable; urgency=low
.
* Add a daily cron script to check the consistency of MyDNS's database.
* Build a PostgreSQL version of the MyDNS server -- yet without debconf
support.
Files:
105111c6862b5737407758963343a87d 659 net optional mydns_1.0.0-1.dsc
5c99d5f0aacb04c2e1f595c111a3f9a4 689368 net optional mydns_1.0.0.orig.tar.gz
b346b039f90e2ddf6cfd2fda6219288b 15766 net optional mydns_1.0.0-1.diff.gz
745abd4484a9500bc3fe042015d5f2c5 30434 net optional
mydns-common_1.0.0-1_all.deb
da88a2ad6828c60e7778c6c679deae41 667420 net optional
mydns-mysql_1.0.0-1_i386.deb
3766e002075387112b41884057bec9ab 158240 net optional
mydns-pgsql_1.0.0-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQFB7Th81OXtrMAUPS0RAgp/AJkBS7PZgNhmsfbY2bUp8GJ0RJzR0QCePctu
tiMwed1DixqMv0jPJYfxh0I=
=/siL
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]