diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:31:52 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-01-25 16:31:52 -0600 |
commit | 1f71905047d874cdc6c63049e566a4d7b976b0fc (patch) | |
tree | dc80e81a54bc58a9881906c61fd75c0675c1bccd /kcron/ctcron.cpp | |
parent | 0d6a0b247bbfdb72289f25171314d93ef805271d (diff) | |
download | tdeadmin-1f71905047d874cdc6c63049e566a4d7b976b0fc.tar.gz tdeadmin-1f71905047d874cdc6c63049e566a4d7b976b0fc.zip |
Fix linear alphabet string errors
Diffstat (limited to 'kcron/ctcron.cpp')
-rw-r--r-- | kcron/ctcron.cpp | 2 |
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; |