summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Blin <blino@mageia.org>2012-09-05 22:09:05 +0000
committerOlivier Blin <blino@mageia.org>2012-09-05 22:09:05 +0000
commit425fdbc680223eb441e4ca335746fe37c3cd0033 (patch)
tree925b5652ffcba6cbe40a18f3f55d2f6cf12c6c03
parent97cdd7b19cd367a98fbbfaf2684c28e994b61f35 (diff)
downloaddrakx-net-425fdbc680223eb441e4ca335746fe37c3cd0033.tar
drakx-net-425fdbc680223eb441e4ca335746fe37c3cd0033.tar.gz
drakx-net-425fdbc680223eb441e4ca335746fe37c3cd0033.tar.bz2
drakx-net-425fdbc680223eb441e4ca335746fe37c3cd0033.tar.xz
drakx-net-425fdbc680223eb441e4ca335746fe37c3cd0033.zip
remove invalid character in source code that makes drakx-net tools crash
-rw-r--r--NEWS2
-rw-r--r--lib/network/network.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 1736e92..d1f9a5b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,5 @@
+- remove invalid character in source code that makes drakx-net tools crash
+
1.15:
- draknetcenter: fix crash when net_applet doesn't run (mga#6040)
diff --git a/lib/network/network.pm b/lib/network/network.pm
index 2e0ee40..baa9cfc 100644
--- a/lib/network/network.pm
+++ b/lib/network/network.pm
@@ -802,7 +802,7 @@ sub easy_dhcp {
sub reload_net_applet() {
#- make net_applet reload the configuration
my $pid = chomp_(`pidof -x net_applet`);
- $pid and eval { kill 1, $pid };
+ $pid and eval { kill 1, $pid };
}
sub configure_network {