Introduction
Introduction Statistics Contact Development Disclaimer Help
using Tcmd successors more carefully - sic - simple irc client
git clone git://git.suckless.org/sic
Log
Files
Refs
README
LICENSE
---
commit 0a903a0c79d47885d6ecdb492988a6372665f1cb
parent 8edb0e23f4491a14a24883125a3a87b5392b56d1
Author: Anselm R. Garbe <[email protected]>
Date: Wed, 31 Jan 2007 11:01:34 +0100
using Tcmd successors more carefully
Diffstat:
M config.mk | 2 +-
M sic.c | 5 +++--
2 files changed, 4 insertions(+), 3 deletions(-)
---
diff --git a/config.mk b/config.mk
@@ -1,5 +1,5 @@
# sic version
-VERSION = 0.7
+VERSION = 0.8
# Customize below to fit your system
diff --git a/sic.c b/sic.c
@@ -194,8 +194,9 @@ parsesrv(char *msg) {
}
else if(!strncmp("MODE", argv[Tcmd], 5))
snprintf(bufout, sizeof bufout, "-!- %s changed mode/%s -> %s …
- argv[Tnick], argv[Tcmd + 1],
- argv[Tcmd + 2], argv[Tcmd + 3]);
+ argv[Tnick], argv[Tcmd + 1] ? argv[Tcmd + 1] :…
+ argv[Tcmd + 2] ? argv[Tcmd + 2] : "",
+ argv[Tcmd + 3] ? argv[Tcmd + 3] : "");
else if(!strncmp("QUIT", argv[Tcmd], 5))
snprintf(bufout, sizeof bufout, "-!- %s(%s) has quit \"%s\"",
argv[Tnick], argv[Tuser],
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.