From 7ca650030f3f122a26084b92398b52744b3d0dfd Mon Sep 17 00:00:00 2001 From: epochqwert Date: Sun, 29 May 2016 06:09:47 +0000 Subject: nick is now set by environment variable NICK --- examples/link.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/link.c b/examples/link.c index 2e4b933..dc2ffab 100644 --- a/examples/link.c +++ b/examples/link.c @@ -93,13 +93,15 @@ int main(int argc,char *argv[]) { fds=malloc(sizeof(int) * (argc+3) / 3); chans=malloc(sizeof(char *) * (argc+3) / 3); int i=0; + char tmp[512]; printf("%d\n",argc); for(i=0;((i*3)+3)