diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-10-31 07:32:20 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-10-31 07:33:24 +0000 |
commit | 61d3fafd055aff8f7e62251ef583679536feb2a2 (patch) | |
tree | d053f83def283f33023a38e3dd8efbcabcbaeea1 /main/dircproxy/fix-issue54-2.patch | |
parent | 8a97690040729669d1d970967374d2ba65f3c30b (diff) | |
download | aports-61d3fafd055aff8f7e62251ef583679536feb2a2.tar.bz2 aports-61d3fafd055aff8f7e62251ef583679536feb2a2.tar.xz |
main/dircproxy: build fixes
Diffstat (limited to 'main/dircproxy/fix-issue54-2.patch')
-rw-r--r-- | main/dircproxy/fix-issue54-2.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/main/dircproxy/fix-issue54-2.patch b/main/dircproxy/fix-issue54-2.patch new file mode 100644 index 0000000000..369abc8792 --- /dev/null +++ b/main/dircproxy/fix-issue54-2.patch @@ -0,0 +1,22 @@ +From fe1d021c4aae19c5772e2869b68a9c6ccea976d5 Mon Sep 17 00:00:00 2001 +From: "francois.harvey" <francois.harvey@francoisharvey.ca> +Date: Sun, 4 Jan 2009 23:27:19 +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 185107e..550a1ff 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 != NULL) ? cmsg.paramstarts[0]: "none"); ++ "%s", (cmsg.paramstarts != NULL) ? cmsg.paramstarts[0]: ""); + + } else if (!strcmp(cmsg.cmd, "DCC") + && p->conn_class->dcc_proxy_incoming) { |