Your message dated Tue, 25 Jan 2005 11:32:06 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#258591: fixed in cronosii 0.2.2.23.1-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; 10 Jul 2004 14:54:04 +0000
>From [EMAIL PROTECTED] Sat Jul 10 07:54:04 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c147245.adsl.hansenet.de (localhost) [213.39.147.245] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1BjJEp-0005Qf-00; Sat, 10 Jul 2004 07:54:03 -0700
Received: from aj by localhost with local (Exim 4.34)
        id 1BjJEn-0007fn-TH; Sat, 10 Jul 2004 16:54:01 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: cronosii: FTBFS with gcc-3.4: label at end of compound statement
Message-Id: <[EMAIL PROTECTED]>
Date: Sat, 10 Jul 2004 16:54:01 +0200
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: cronosii
Severity: normal
Tags: patch

When building 'cronosii' with gcc-3.4 I get the following error:

cd .. \
  && CONFIG_FILES=src/Makefile CONFIG_HEADERS= /bin/sh ./config.status
config.status: creating src/Makefile
config.status: executing default-1 commands
config.status: executing default-2 commands
make[3]: Leaving directory `/cronosii-0.2.2.23.1/src'
make[3]: Entering directory `/cronosii-0.2.2.23.1/src'
gcc -DHAVE_CONFIG_H -DLOCALEDIR=\"\" -I.. -I/usr/include        `gnome-config 
--cflags gnome`    -DG_LOG_DOMAIN=\"CronosII\" 
-DGNOMELOCALEDIR=\""/usr/share/locale"\"    -I../intl -I../intl  
-DDATADIR=\"/usr/share\"    -Wall -I/usr/include/glib-1.2 
-I/usr/lib/glib/include -D_REENTRANT -DUSE_GNOME -g  -I/usr/include/gnome-1.0 
-DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include -I/usr/include/gtk-1.2 
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include 
-I/usr/include/gdk-pixbuf-1.0 -c account.c
gcc -DHAVE_CONFIG_H -DLOCALEDIR=\"\" -I.. -I/usr/include        `gnome-config 
--cflags gnome`    -DG_LOG_DOMAIN=\"CronosII\" 
-DGNOMELOCALEDIR=\""/usr/share/locale"\"    -I../intl -I../intl  
-DDATADIR=\"/usr/share\"    -Wall -I/usr/include/glib-1.2 
-I/usr/lib/glib/include -D_REENTRANT -DUSE_GNOME -g  -I/usr/include/gnome-1.0 
-DNEED_GNOMESUPPORT_H -I/usr/lib/gnome-libs/include -I/usr/include/gtk-1.2 
-I/usr/include/glib-1.2 -I/usr/lib/glib/include -I/usr/X11R6/include 
-I/usr/include/gdk-pixbuf-1.0 -c addrbook.c
addrbook.c: In function `c2_address_book_search_all':
addrbook.c:859: error: label at end of compound statement
addrbook.c: In function `c2_address_book_get_available_groups':
addrbook.c:942: error: label at end of compound statement
make[3]: *** [addrbook.o] Error 1
make[3]: Leaving directory `/cronosii-0.2.2.23.1/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/cronosii-0.2.2.23.1'
make[1]: *** [all-recursive-am] Error 2
make[1]: Leaving directory `/cronosii-0.2.2.23.1'
make: *** [build-stamp] Error 2

With the attached patch 'cronosii' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/cronosii-0.2.2.23.1/src/addrbook.c ./src/addrbook.c
--- ../tmp-orig/cronosii-0.2.2.23.1/src/addrbook.c      2002-02-19 
20:46:26.000000000 +0100
+++ ./src/addrbook.c    2004-07-10 15:58:33.454379266 +0200
@@ -856,6 +856,7 @@
 
                /* Should @others be scanned? */
              move_on:
+             continue;
        }
 
        c2_free (mpattern);
@@ -939,6 +940,7 @@
 
                        list = g_list_append (list, le->data);
                      skip:
+                     continue;
                }
        }
 
diff -urN ../tmp-orig/cronosii-0.2.2.23.1/src/gui-import.c ./src/gui-import.c
--- ../tmp-orig/cronosii-0.2.2.23.1/src/gui-import.c    2002-02-13 
17:47:57.000000000 +0100
+++ ./src/gui-import.c  2004-07-10 16:29:22.544329069 +0200
@@ -146,19 +146,18 @@
     int i;
    
     inbox = search_mailbox_name (config->mailbox_head, MAILBOX_INBOX);
-    if (!inbox) goto out;
-    
-    for (i=1, cnode = gtk_ctree_node_nth (GTK_CTREE (iw->mailbox), 0); cnode; 
i++) {
-      if (i>1) cnode = gtk_ctree_node_nth (GTK_CTREE (iw->mailbox), i);
-      cnode_sele = gtk_ctree_find_by_row_data (GTK_CTREE (iw->mailbox), cnode, 
inbox);
+    if (inbox) {
+      for (i=1, cnode = gtk_ctree_node_nth (GTK_CTREE (iw->mailbox), 0); 
cnode; i++) {
+        if (i>1) cnode = gtk_ctree_node_nth (GTK_CTREE (iw->mailbox), i);
+        cnode_sele = gtk_ctree_find_by_row_data (GTK_CTREE (iw->mailbox), 
cnode, inbox);
       
-      if (cnode_sele) {
-       gtk_ctree_select (GTK_CTREE (iw->mailbox), cnode_sele);
-       iw->mbox = inbox->name;
-       break;
+        if (cnode_sele) {
+         gtk_ctree_select (GTK_CTREE (iw->mailbox), cnode_sele);
+         iw->mbox = inbox->name;
+         break;
+       }
       }
     }
-out:
   }
        
   frame = gtk_frame_new (_("File"));
diff -urN ../tmp-orig/cronosii-0.2.2.23.1/src/smtp.c ./src/smtp.c
--- ../tmp-orig/cronosii-0.2.2.23.1/src/smtp.c  2002-02-13 17:47:57.000000000 
+0100
+++ ./src/smtp.c        2004-07-10 16:33:15.896461230 +0200
@@ -758,11 +758,10 @@
        strncpy (buf, ptr, len);
        buf[len] = 0;
        ptr=ptr2+1;
-       for (; *ptr == ' '; ptr++) if (*ptr == '\0') goto ignore_this;
+       for (; *ptr == ' '; ptr++);
        ptr2++;
        list = g_list_append (list, str_get_mail_address (buf));
        c2_free (buf);
-ignore_this:
       } else {
        len = strlen (ptr);
        buf = g_new0 (char, len+1);

---------------------------------------
Received: (at 258591-close) by bugs.debian.org; 25 Jan 2005 16:35:52 +0000
>From [EMAIL PROTECTED] Tue Jan 25 08:35:52 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 1CtTfU-0001iW-00; Tue, 25 Jan 2005 08:35:52 -0800
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1CtTbq-0003dv-00; Tue, 25 Jan 2005 11:32:06 -0500
From: Angel Ramos <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#258591: fixed in cronosii 0.2.2.23.1-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 25 Jan 2005 11:32:06 -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: 
X-CrossAssassin-Score: 2

Source: cronosii
Source-Version: 0.2.2.23.1-2

We believe that the bug you reported is fixed in the latest version of
cronosii, which is due to be installed in the Debian FTP archive:

cronosii_0.2.2.23.1-2.diff.gz
  to pool/main/c/cronosii/cronosii_0.2.2.23.1-2.diff.gz
cronosii_0.2.2.23.1-2.dsc
  to pool/main/c/cronosii/cronosii_0.2.2.23.1-2.dsc
cronosii_0.2.2.23.1-2_i386.deb
  to pool/main/c/cronosii/cronosii_0.2.2.23.1-2_i386.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.
Angel Ramos <[EMAIL PROTECTED]> (supplier of updated cronosii 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: Tue, 25 Jan 2005 16:35:00 +0100
Source: cronosii
Binary: cronosii
Architecture: source i386
Version: 0.2.2.23.1-2
Distribution: unstable
Urgency: low
Maintainer: Angel Ramos <[EMAIL PROTECTED]>
Changed-By: Angel Ramos <[EMAIL PROTECTED]>
Description: 
 cronosii   - fast, light-weight and functional GNOME e-mail client
Closes: 249941 258591
Changes: 
 cronosii (0.2.2.23.1-2) unstable; urgency=low
 .
   * Fixed ggc 3.4 compilation errors (Closes: #258591).
   * Fixed crash donwload mail problem (Closes: #249941).
Files: 
 473b1a6ec340355df87b23149af12570 763 mail optional cronosii_0.2.2.23.1-2.dsc
 a3ed9da9a9c34cc3ccb79aba377e9d34 68451 mail optional 
cronosii_0.2.2.23.1-2.diff.gz
 a6c2bdb5a1af59e627fb5a61e7e98ae0 540234 mail optional 
cronosii_0.2.2.23.1-2_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFB9oAaoSMQNVMgBdoRAjo+AKCIrpJogqb72Rs9HkC8j0k3PRKZ2gCfft2S
CqTwRDYZx/VYqNcPfZuDTzc=
=1W6/
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to