Package: kazehakase
Version: 0.3.9-1.1
Severity: minor
Tags: patch
Values for "Issued On" and "Expires On" (eventually the labels
themselves) seem interchanged in Certificate Properties dialog
box/General tab.
I think the fix is easy. The attached patch works for me.
-- System Information:
Debian Release: testing/unstable
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/dash
Kernel: Linux 2.6.17moje
Locale: LANG=cs_CZ.ISO-8859-2, LC_CTYPE=cs_CZ.ISO-8859-2 (charmap=ISO-8859-2)
Versions of packages kazehakase depends on:
ii libatk1.0-0 1.12.3-1 The ATK accessibility toolkit
ii libc6 2.3.6.ds1-4 GNU C Library: Shared libraries
ii libcairo2 1.2.4-1 The Cairo 2D vector graphics libra
ii libfontconfig1 2.4.1-2 generic font configuration library
ii libfreetype6 2.2.1-5 FreeType 2 font engine, shared lib
ii libgcc1 1:4.1.1-13 GCC support library
ii libgcrypt11 1.2.3-2 LGPL Crypto library - runtime libr
ii libgettext-ruby1.8 1.7.0-1 Gettext for ruby1.8
ii libglib2.0-0 2.12.4-1 The GLib library of C routines
ii libgnutls13 1.4.4-1 the GNU TLS library - runtime libr
ii libgpg-error0 1.4-1 library for common error values an
ii libgtk2-ruby 0.15.0-1.1 GTK+ bindings for the Ruby languag
ii libgtk2.0-0 2.8.20-2 The GTK+ graphical user interface
ii libice6 1:1.0.1-2 X11 Inter-Client Exchange library
ii libnspr4-0d 1.8.0.7-1 NetScape Portable Runtime Library
ii libpango1.0-0 1.14.5-1 Layout and rendering of internatio
ii libpng12-0 1.2.8rel-5.2 PNG library - runtime
ii libruby1.8 1.8.5-2 Libraries necessary to run Ruby 1.
ii libsm6 1:1.0.1-3 X11 Session Management library
ii libtasn1-3 0.3.6-1 Manage ASN.1 structures (runtime)
ii libx11-6 2:1.0.0-9 X11 client-side library
ii libxcursor1 1.1.7-4 X cursor management library
ii libxext6 1:1.0.1-2 X11 miscellaneous extension librar
ii libxfixes3 1:4.0.1-4 X11 miscellaneous 'fixes' extensio
ii libxi6 1:1.0.1-3 X11 Input extension library
ii libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii libxrandr2 2:1.1.0.2-4 X11 RandR extension library
ii libxrender1 1:0.9.1-3 X Rendering Extension client libra
ii libxul0d 1.8.0.7-1 Gecko engine library
ii ruby 1.8.2-1 An interpreter of object-oriented
ii zlib1g 1:1.2.3-13 compression library - runtime
Versions of packages kazehakase recommends:
pn hyperestraier <none> (no description available)
-- debconf-show failed
--- kazehakase-0.3.9.orig/src/mozilla/GtkNSSDialogs.cpp 2006-08-05
20:32:43.000000000 +0200
+++ kazehakase-0.3.9/src/mozilla/GtkNSSDialogs.cpp 2006-10-18
15:31:14.000000000 +0200
@@ -1447,14 +1447,14 @@
rv = cert->GetValidity (getter_AddRefs(validity));
if (NS_FAILED(rv)) return rv;
- rv = validity->GetNotAfterLocalDay (value);
+ rv = validity->GetNotBeforeLocalDay (value);
if (NS_FAILED(rv)) return rv;
widget = gtk_label_new("");
set_label_cert_attribute (widget, value);
gtk_table_attach(GTK_TABLE(table), widget,
1, 2, 0, 1, GTK_FILL, GTK_SHRINK, 0, 0);
- rv = validity->GetNotBeforeLocalDay (value);
+ rv = validity->GetNotAfterLocalDay (value);
if (NS_FAILED(rv)) return rv;
widget = gtk_label_new("");
set_label_cert_attribute (widget, value);