Package: knemo Version: 0.3.1-4+b1 Severity: normal Tags: patch Subject says all. In the status dialog (left click on the wireless symbol in the systray) the link quality of the wireless connection is not shown. The attached patch fixes this (shamelessly taken from the Gentoo version).
Cheers, Michael -- System Information: Debian Release: testing/unstable APT prefers unstable APT policy: (500, 'unstable'), (300, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.15.1 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Versions of packages knemo depends on: ii kdelibs-bin 4:3.5.1-1 core binaries for all KDE applicat ii kdelibs4c2a 4:3.5.1-1 core libraries for all KDE applica ii kicker 4:3.5.0-4 desktop panel for KDE ii libc6 2.3.5-12 GNU C Library: Shared libraries an ii libgcc1 1:4.0.2-7 GCC support library ii libstdc++6 4.0.2-7 The GNU Standard C++ Library v3 ii net-tools 1.60-17 The NET-3 networking toolkit Versions of packages knemo recommends: ii kcontrol 4:3.5.0-4 control center for KDE ii wireless-tools 27+28pre13-1 Tools for manipulating Linux Wirel -- no debconf information
--- knemo-0.3.1/knemod/interfaceupdater.cpp.orig 2004-08-20 16:26:41.000000000 -0400 +++ knemo-0.3.1/knemod/interfaceupdater.cpp 2005-02-24 18:51:40.107178056 -0500 @@ -398,7 +398,7 @@ if ( regExp.search( config ) > -1 ) data.noise = regExp.cap( 1 ); - regExp.setPattern( "Link Quality:([\\d/]*)" ); + regExp.setPattern( "Link Quality[:=]([\\d/]*)" ); if ( regExp.search( config ) > -1 ) data.linkQuality = regExp.cap( 1 ); }