summaryrefslogtreecommitdiffstats
path: root/kcron
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:31:52 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-25 16:31:52 -0600
commit1f71905047d874cdc6c63049e566a4d7b976b0fc (patch)
treedc80e81a54bc58a9881906c61fd75c0675c1bccd /kcron
parent0d6a0b247bbfdb72289f25171314d93ef805271d (diff)
downloadtdeadmin-1f71905047d874cdc6c63049e566a4d7b976b0fc.tar.gz
tdeadmin-1f71905047d874cdc6c63049e566a4d7b976b0fc.zip
Fix linear alphabet string errors
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;