From 289f32d38739f226fbbc1949239ae29a57954f03 Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Tue, 30 Jun 2009 21:51:33 -0400 Subject: [PATCH 1/2] Fix a small unicode problem in wicd-curses that caused a crash in Debian Lenny. --- curses/wicd-curses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curses/wicd-curses.py b/curses/wicd-curses.py index da1b1f4..4a0c041 100755 --- a/curses/wicd-curses.py +++ b/curses/wicd-curses.py @@ -145,7 +145,7 @@ def check_for_wireless(iwconfig, wireless_ip, set_status): if not network: return False - network = str(network) + network = unicode(network) if daemon.GetSignalDisplayType() == 0: strength = wireless.GetCurrentSignalStrength(iwconfig) else: From 2e650c7a44e2cf74632fc41504c33fcbef0ce5ba Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Tue, 30 Jun 2009 22:43:17 -0400 Subject: [PATCH 2/2] Background wicd's startup in Slackware's initscript. --- in/init=slackware=rc.wicd.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/in/init=slackware=rc.wicd.in b/in/init=slackware=rc.wicd.in index 10b3317..69c3f77 100755 --- a/in/init=slackware=rc.wicd.in +++ b/in/init=slackware=rc.wicd.in @@ -16,8 +16,8 @@ wicd_start() { echo "$PIDFILE and try again..." exit 1 else - echo "Starting wicd daemon: $DAEMON" - wicd 2>/dev/null 1>&2 + echo "Starting wicd daemon: $DAEMON &" + wicd 2>/dev/null 1>&2 & fi }