summaryrefslogtreecommitdiff
path: root/blasms.c
diff options
context:
space:
mode:
authorLuke Bratch <l_bratch@yahoo.co.uk>2010-10-27 14:50:33 +0100
committerLuke Bratch <l_bratch@yahoo.co.uk>2010-10-27 14:50:33 +0100
commit67caf9d07c3ad05d66a6ded60440e125bd29191c (patch)
tree5ae3a1e4b23f7c3a7f9a855598bf7cb80f8398da /blasms.c
parent73ebf729fa15267ac77a0f304b383137f9a4474b (diff)
Renamed smsparse.conf to blasms.conf
Diffstat (limited to 'blasms.c')
-rw-r--r--blasms.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/blasms.c b/blasms.c
index da38fbe..f045aab 100644
--- a/blasms.c
+++ b/blasms.c
@@ -49,7 +49,7 @@ void setname(char* telnum) {
fp = fopen("phonebook.conf", "r");
if (fp == NULL) {
- printf("Error opening smsparse.conf.\n");
+ printf("Error opening blasms.conf.\n");
return;
}
@@ -98,7 +98,7 @@ int main(int argc, char *argv[]) {
"\n"
"SMS content should be passed using stdin.\n"
"\n"
- "smsparse.conf is the configuration file and should be in the format:\n"
+ "blasms.conf is the configuration file and should be in the format:\n"
" default SYSTEM COMMANDS\n"
" CMD1 SYSTEM COMMANDS\n"
" CMD2 SYSTEM COMMANDS\n"
@@ -115,7 +115,7 @@ int main(int argc, char *argv[]) {
" %%d - replaced with the send-date\n"
" %%s - replaced with the SMS content\n"
"\n"
- "An example smsparse.conf might be:\n"
+ "An example blasms.conf might be:\n"
" default echo \\\"SMS from %%N at %%d: %%s\\\"\n"
" LS ls %%s\n"
"\n"
@@ -143,10 +143,10 @@ int main(int argc, char *argv[]) {
printf("Contents : %s\n", sms);
}
- fp = fopen("smsparse.conf", "r");
+ fp = fopen("blasms.conf", "r");
if (fp == NULL) {
- printf("Error opening smsparse.conf.\n");
+ printf("Error opening blasms.conf.\n");
return 1;
}