diff options
author | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-10-29 22:41:36 +0100 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-10-29 22:41:36 +0100 |
commit | af1b36c5339598c8837199e40aec2e66845a3556 (patch) | |
tree | 14b4175da05167f1a582186a2ef64acfd663c0ea /blasms.c | |
parent | aac8fd309c0749bc7d6c12f0b5342ad9aa24b750 (diff) |
Ensure command lengths are equal when matching to configuration file
Diffstat (limited to 'blasms.c')
-rw-r--r-- | blasms.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -221,6 +221,10 @@ int main(int argc, char *argv[]) { //printf("Default command: %s\n", defaultcmd); continue; } + /* If the SMS command doesn't end here, continue */ + if (sms[offset] != ' ') { + continue; + } strxfrm(smscommand, sms, offset); smscommand[offset] = '\0'; //printf("SMS command: %s\n", smscommand); |