applied Dimitris patches, thanks - sic - simple irc client | |
git clone git://git.suckless.org/sic | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit efb5435694d27b897ffb97f3bf4984488893bf80 | |
parent fdaf2adbc98db2979e68fbb653620a974c338d0a | |
Author: Anselm R Garbe <[email protected]> | |
Date: Sun, 6 Mar 2011 07:37:21 +0000 | |
applied Dimitris patches, thanks | |
Diffstat: | |
M Makefile | 2 +- | |
M sic.c | 2 +- | |
2 files changed, 2 insertions(+), 2 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -17,7 +17,7 @@ options: | |
@echo CC $< | |
@${CC} -c ${CFLAGS} $< | |
-${OBJ}: config.mk | |
+${OBJ}: config.mk util.c | |
sic: ${OBJ} | |
@echo CC -o $@ | |
diff --git a/sic.c b/sic.c | |
@@ -9,7 +9,7 @@ | |
#include <unistd.h> | |
static char *host = "irc.oftc.net"; | |
-static char *port = "ircd"; | |
+static char *port = "6667"; | |
static char *password; | |
static char nick[32]; | |
static char bufin[4096]; |