summaryrefslogtreecommitdiffstats
path: root/kcron
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:31:52 -0600
committerSlávek Banko <slavek.banko@axis.cz>2012-06-03 20:26:22 +0200
commitbd61e5662aacd088cd42e330c8f0657dafd1044e (patch)
tree50be73abf9a6b084a33ede70ab61e32ba2eb1123 /kcron
parent67c9fb79035e7c4890b580c997cf644b3aa93a5a (diff)
downloadtdeadmin-bd61e5662aacd088cd42e330c8f0657dafd1044e.tar.gz
tdeadmin-bd61e5662aacd088cd42e330c8f0657dafd1044e.zip
Fix linear alphabet string errors
(cherry picked from commit 1f71905047d874cdc6c63049e566a4d7b976b0fc)
Diffstat (limited to 'kcron')
-rw-r--r--kcron/ctcron.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kcron/ctcron.cpp b/kcron/ctcron.cpp
index e470a72..f5cb04c 100644
--- a/kcron/ctcron.cpp
+++ b/kcron/ctcron.cpp
@@ -178,7 +178,7 @@ istream& operator >> (istream& inputStream, CTCron& cron)
if ((line.find("#") == 0) && (line.find("\\") != 1))
{
// If the first 10 characters don't contain a character, it's probably a disabled entry.
- int first_text = line.find_first_of("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPTQRSTUVWXYZ");
+ int first_text = line.find_first_of("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ");
if (first_text < 0)
continue;