diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-10-31 07:33:12 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-10-31 07:33:24 +0000 |
commit | 5ede648bb14d6fde854832d2c633b777797fb879 (patch) | |
tree | ed146050fc2c78b93d0754bc367cf68f21cbe711 /community/dircproxy/fix-issue54-1.patch | |
parent | 61d3fafd055aff8f7e62251ef583679536feb2a2 (diff) | |
download | aports-5ede648bb14d6fde854832d2c633b777797fb879.tar.bz2 aports-5ede648bb14d6fde854832d2c633b777797fb879.tar.xz |
community/dircproxy: move into community
Diffstat (limited to 'community/dircproxy/fix-issue54-1.patch')
-rw-r--r-- | community/dircproxy/fix-issue54-1.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/dircproxy/fix-issue54-1.patch b/community/dircproxy/fix-issue54-1.patch new file mode 100644 index 0000000000..b35d4e4cc3 --- /dev/null +++ b/community/dircproxy/fix-issue54-1.patch @@ -0,0 +1,22 @@ +From 614f50d50936e36ddc947cbec16128c35276fb69 Mon Sep 17 00:00:00 2001 +From: "francois.harvey" <francois.harvey@francoisharvey.ca> +Date: Sun, 4 Jan 2009 23:25:40 +0000 +Subject: [PATCH] Fix for #54 + +--- + src/irc_server.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/irc_server.c b/src/irc_server.c +index a694ab2..185107e 100644 +--- a/src/irc_server.c ++++ b/src/irc_server.c +@@ -1155,7 +1155,7 @@ static int _ircserver_gotmsg(struct ircproxy *p, const char *str) { + + if (!strcmp(cmsg.cmd, "ACTION")) { + irclog_log(p, IRC_LOG_ACTION, logdest, msg.src.orig, +- "%s", cmsg.paramstarts[0]); ++ "%s", (cmsg.paramstarts != NULL) ? cmsg.paramstarts[0]: "none"); + + } else if (!strcmp(cmsg.cmd, "DCC") + && p->conn_class->dcc_proxy_incoming) { |