summaryrefslogtreecommitdiffstats
path: root/src/knemod/backends
diff options
context:
space:
mode:
Diffstat (limited to 'src/knemod/backends')
-rw-r--r--src/knemod/backends/daemonregistry.h2
-rw-r--r--src/knemod/backends/kcmregistry.h16
2 files changed, 6 insertions, 12 deletions
diff --git a/src/knemod/backends/daemonregistry.h b/src/knemod/backends/daemonregistry.h
index 1c0674b..26af5ae 100644
--- a/src/knemod/backends/daemonregistry.h
+++ b/src/knemod/backends/daemonregistry.h
@@ -46,8 +46,8 @@ struct DaemonRegistryEntry
DaemonRegistryEntry DaemonRegistry[] =
{
- { "Nettools", NetToolsBackend::createInstance },
{ "Sys", SysBackend::createInstance },
+ { "Nettools", NetToolsBackend::createInstance },
{ TQString(), 0 }
};
diff --git a/src/knemod/backends/kcmregistry.h b/src/knemod/backends/kcmregistry.h
index 0dde2e8..28ffec4 100644
--- a/src/knemod/backends/kcmregistry.h
+++ b/src/knemod/backends/kcmregistry.h
@@ -42,19 +42,13 @@ struct KCMRegistryEntry
KCMRegistryEntry KCMRegistry[] =
{
- { "Nettools",
- i18n( "Uses the tools from the nettool packge like ifconfig, " \
- "iwconfig and route to read the necessary information " \
- "from the ouput of these commands.\n" \
- "This backend works rather stable but causes a relativly " \
- "high CPU load." ) },
{ "Sys",
i18n( "Uses the sys filesystem available in 2.6 kernels and " \
- "direct system calls to the Linux kernel.\n" \
- "This backend is rather new, so expect minor problems. " \
- "As an advantage this backend should reduce the CPU load " \
- "and should not access the harddisc while gathering " \
- "information." ) },
+ "direct system calls to the Linux kernel." ) },
+ { "Nettools",
+ i18n( "Uses the tools from the net-tools package like ifconfig, " \
+ "iwconfig and route to read the necessary information " \
+ "from the ouput of these commands.") },
{ TQString(), TQString() }
};