diff options
author | Garry Zacheiss <zacheiss@mit.edu> | 2003-02-28 15:40:44 +0000 |
---|---|---|
committer | Garry Zacheiss <zacheiss@mit.edu> | 2003-02-28 15:40:44 +0000 |
commit | cb20ed5f4ac4d0454dc0aa1b76023677ecfd406b (patch) | |
tree | aa477c9c0ecb3e24b09359d4c658334b7e8d837b /clients/zaway | |
parent | c55211042ab2e88847c180f1332ed33df40d2f52 (diff) |
Don't respond to messages with opcode AUTO.
Diffstat (limited to 'clients/zaway')
-rw-r--r-- | clients/zaway/zaway.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clients/zaway/zaway.c b/clients/zaway/zaway.c index 332598f..c68c4e9 100644 --- a/clients/zaway/zaway.c +++ b/clients/zaway/zaway.c @@ -143,6 +143,7 @@ int main(argc,argv) if (strcmp(notice.z_sender,ZGetSender()) == 0 || strcmp(notice.z_opcode,"PING") == 0 || + strcmp(notice.z_opcode,"AUTO") == 0 || strcmp(notice.z_message,"Automated reply:") == 0) { ZFreeNotice(¬ice); continue; |