Your message dated Thu, 28 Jul 2011 11:47:07 +0000
with message-id <[email protected]>
and subject line Bug#635665: Removed package(s) from unstable
has caused the Debian Bug report #569277,
regarding normal
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
569277: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=569277
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: twitux
Version: 0.61-2
Severity: normal

twitux cannot parse date field of message on the other locale
than C/POSIX.
When parsing, strptime() fails.
An attached patch fixes it by inserting setlocale(LC_TIME) 
before strptime(). 


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/1 CPU core)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages twitux depends on:
ii  gconf2                     2.22.0-1      GNOME configuration database syste
ii  gnome-keyring              2.22.3-1      GNOME keyring services (daemon and
ii  libaspell15                0.60.6-1      GNU Aspell spell-checker runtime l
ii  libc6                      2.7-13        GNU C Library: Shared libraries
ii  libdbus-1-3                1.2.1-3       simple interprocess messaging syst
ii  libdbus-glib-1-2           0.76-1        simple interprocess messaging syst
ii  libgconf2-4                2.22.0-1      GNOME configuration database syste
ii  libglade2-0                1:2.6.2-1     library to load .glade files at ru
ii  libglib2.0-0               2.16.5-1      The GLib library of C routines
ii  libgnome-keyring0          2.22.3-1      GNOME keyring services library
ii  libgtk2.0-0                2.12.11-3     The GTK+ graphical user interface 
ii  libnotify1 [libnotify1-gtk 0.4.4-3       sends desktop notifications to a n
ii  libsexy2                   0.1.11-2      collection of additional GTK+ widg
ii  libsoup2.4-1               2.4.1-2       an HTTP library implementation in 
ii  libxml2                    2.6.32.dfsg-2 GNOME XML library

twitux recommends no packages.

twitux suggests no packages.

-- no debconf information
--- src/twitux-parser.c.keep    2008-09-21 13:30:42.992771264 +0900
+++ src/twitux-parser.c 2008-09-21 13:29:50.972771405 +0900
@@ -421,12 +421,14 @@
        ta->tm_isdst = -1;
        seconds_local = mktime (ta);
        
+       oldenv=setlocale(LC_TIME, "C");
        strptime (datetime, "%a %b %d %T +0000 %Y", &post);
        post.tm_isdst = -1;
        seconds_post =  mktime (&post);
+       setlocale(LC_TIME, oldenv);
 
-       diff = seconds_local-seconds_post;
-
+       diff = difftime (seconds_local, seconds_post);
+       
        if (diff < 0) {
                return g_strdup (_("1 second ago"));
        }

--- End Message ---
--- Begin Message ---
Version: 0.69-4+rm

Dear submitter,

as the package twitux has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see http://bugs.debian.org/635665

The version of this package that was in Debian prior to this removal
can still be found using http://snapshot.debian.org/.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
[email protected].

Debian distribution maintenance software
pp.
Alexander Reichle-Schmehl (the ftpmaster behind the curtain)


--- End Message ---

Reply via email to