diff options
author | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-10-29 01:59:09 +0100 |
---|---|---|
committer | Luke Bratch <l_bratch@yahoo.co.uk> | 2010-10-29 01:59:09 +0100 |
commit | fcfc709333fbf8ae6887d935927c388063c03813 (patch) | |
tree | 539e2791a237d99dc46b8a461afcddd43a9ef700 | |
parent | d17a8ed18ca5e154faa8f753e8dac98188afcde5 (diff) |
Make name to number lookups set the correct offset
-rw-r--r-- | blasms.c | 3 | ||||
-rw-r--r-- | blasms.conf | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -97,11 +97,12 @@ void settelnum(char* telnum, char* sms, int *offsetptr) { //printf("Name match: %s\n", line); strxfrm(telnum, line, offset); telnum[offset] = '\0'; + break; } } } - *offsetptr = offset; + *offsetptr = *offsetptr + strlen(name) + 1; } int main(int argc, char *argv[]) { diff --git a/blasms.conf b/blasms.conf index 5c9752e..09d2991 100644 --- a/blasms.conf +++ b/blasms.conf @@ -1,3 +1,4 @@ default ssh ircscreen@tghost.co.uk "echo \"msg #theblueroom SMS from %N: %s\" > ~/.irssi/remote-control" TBR ssh ircscreen@tghost.co.uk "echo \"msg #theblueroom SMS from %N: %s\" > ~/.irssi/remote-control" WEB echo Fake posting to tghost.co.uk: %s +!sms echo "%P <%d> %s" |