Your message dated Thu, 28 Jul 2005 16:02:40 -0700 with message-id <[EMAIL PROTECTED]> and subject line Bug#292999: fixed in jigit 1.15-2 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; 31 Jan 2005 17:02:48 +0000 >From [EMAIL PROTECTED] Mon Jan 31 09:02:48 2005 Return-path: <[EMAIL PROTECTED]> Received: from d164124.adsl.hansenet.de (localhost.localdomain) [80.171.164.124] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1Cvewp-0000aX-00; Mon, 31 Jan 2005 09:02:48 -0800 Received: from aj by localhost.localdomain with local (Exim 4.34) id 1Cvewo-0000Vt-82; Mon, 31 Jan 2005 18:02:46 +0100 To: Debian Bug Tracking System <[EMAIL PROTECTED]> From: Andreas Jochens <[EMAIL PROTECTED]> Subject: jigit: FTBFS (amd64/gcc-4.0): pointer targets in passing argument 1 of 'find_file_in_md5_list' differ in signedness Message-Id: <[EMAIL PROTECTED]> Date: Mon, 31 Jan 2005 18:02:46 +0100 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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02 X-Spam-Level: Package: jigit Severity: normal Tags: patch When building 'jigit' on amd64 with gcc-4.0, I get the following error: cc -g -Wall -Werror -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -c -o mkimage.o mkimage.c cc1: warnings being treated as errors mkimage.c: In function 'add_file_entry': mkimage.c:358: warning: pointer targets in passing argument 1 of 'find_file_in_md5_list' differ in signedness mkimage.c: In function 'parse_file_block': mkimage.c:699: warning: pointer targets in passing argument 1 of 'find_file_in_md5_list' differ in signedness make[1]: *** [mkimage.o] Error 1 make[1]: Leaving directory `/jigit-1.15' make: *** [build-stamp] Error 2 With the attached patch 'jigit' can be compiled on amd64 using gcc-4.0. Regards Andreas Jochens diff -urN ../tmp-orig/jigit-1.15/mkimage.c ./mkimage.c --- ../tmp-orig/jigit-1.15/mkimage.c 2005-01-17 23:57:24.000000000 +0100 +++ ./mkimage.c 2005-01-31 17:55:09.828386189 +0100 @@ -355,7 +355,7 @@ ptr++; } - if (find_file_in_md5_list(base64_md5)) + if (find_file_in_md5_list((unsigned char*)base64_md5)) return 0; /* We already have an entry for this file; don't * waste any more time on it */ @@ -696,7 +696,7 @@ if (!quick) mk_MD5Init(&file_context); - md5_list_entry = find_file_in_md5_list(base64_md5); + md5_list_entry = find_file_in_md5_list((unsigned char*)base64_md5); if (md5_list_entry && file_size == md5_list_entry->file_size) { input_file = fopen(md5_list_entry->full_path, "rb"); --------------------------------------- Received: (at 292999-close) by bugs.debian.org; 28 Jul 2005 23:09:08 +0000 >From [EMAIL PROTECTED] Thu Jul 28 16:09:08 2005 Return-path: <[EMAIL PROTECTED]> Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian)) id 1DyHOi-0001bY-00; Thu, 28 Jul 2005 16:02:40 -0700 From: Steve McIntyre <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.56 $ Subject: Bug#292999: fixed in jigit 1.15-2 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Thu, 28 Jul 2005 16:02:40 -0700 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-Level: 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 Source: jigit Source-Version: 1.15-2 We believe that the bug you reported is fixed in the latest version of jigit, which is due to be installed in the Debian FTP archive: jigit_1.15-2.diff.gz to pool/main/j/jigit/jigit_1.15-2.diff.gz jigit_1.15-2.dsc to pool/main/j/jigit/jigit_1.15-2.dsc jigit_1.15-2_alpha.deb to pool/main/j/jigit/jigit_1.15-2_alpha.deb jigit_1.15-2_i386.deb to pool/main/j/jigit/jigit_1.15-2_i386.deb jigit_1.15-2_ia64.deb to pool/main/j/jigit/jigit_1.15-2_ia64.deb jigit_1.15-2_mips.deb to pool/main/j/jigit/jigit_1.15-2_mips.deb jigit_1.15-2_powerpc.deb to pool/main/j/jigit/jigit_1.15-2_powerpc.deb 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. Steve McIntyre <[EMAIL PROTECTED]> (supplier of updated jigit 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: Mon, 25 Jul 2005 22:08:28 +0100 Source: jigit Binary: jigit Architecture: alpha i386 ia64 mips powerpc source Version: 1.15-2 Distribution: unstable Urgency: low Maintainer: Steve McIntyre <[EMAIL PROTECTED]> Changed-By: Steve McIntyre <[EMAIL PROTECTED]> Description: jigit - tools for working with jigdo files Closes: 292999 Changes: jigit (1.15-2) unstable; urgency=low . * Fixes for GCC4 compilation. Thanks to Andreas Jochens for the patch. Closes: #292999 Files: 14f16dd4eca3c4d1495827ccf322f2f7 552 utils extra jigit_1.15-2.dsc 3730c19e334eed89b57abe31f5467bac 2406 utils extra jigit_1.15-2.diff.gz 407bf62aad4703230b461fba7a83cfe7 42792 utils extra jigit_1.15-2_ia64.deb 709651156eae03033238d1d5ee97fe62 24850 utils extra jigit_1.15-2_i386.deb b025318de74d091afdfeb10cf26b9fd9 28770 utils extra jigit_1.15-2_alpha.deb ecffcbe31ee1dc348209d7a3ebdaa45e 28026 utils extra jigit_1.15-2_powerpc.deb efdcee1e09435202418aadb36ac23d8d 35588 utils extra jigit_1.15-2_mips.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFC5WtUfDt5cIjHwfcRAiQQAKCaixxOzbLjuUwWBd2ei33KUoTnowCeJdCf XgCLkcR4ct5Ea6s50fpfJzA= =0Uni -----END PGP SIGNATURE----- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]