openbsd-ports/net/irssi/patches/patch-src_fe-common_irc_fe-irc-commands_c
sthen f1e16e9c28 Various tweaks to the irssi port, from Brad. Tested by a few people,
viq (maintainer) doesn't have time to look at it properly but is
generally ok with this.

- Remove USE_GROFF
- Remove --enable-ipv6 from CONFIGURE_ARGS since its enabled by default
- Backport fixes from SVN repo..
  - Replace deprecated glib functions
  - Do not go beyond the end of the string when processing an octal escape
  - glib iochannel fixes
  - Fix segfault generated by SSL disconnections
  - Do not use SSLv2 protocol
  - When sending a signal to an /exec'd command, send it to the process
    group id instead of the process id.
2011-11-16 10:16:57 +00:00

13 lines
447 B
Plaintext

$OpenBSD: patch-src_fe-common_irc_fe-irc-commands_c,v 1.1 2011/11/16 10:16:57 sthen Exp $
--- src/fe-common/irc/fe-irc-commands.c.orig Sun Nov 6 05:01:38 2011
+++ src/fe-common/irc/fe-irc-commands.c Sun Nov 6 05:01:50 2011
@@ -131,7 +131,7 @@ static void cmd_ctcp(const char *data, IRC_SERVER_REC
return;
}
- g_strup(ctcpcmd);
+ ascii_strup(ctcpcmd);
signal_emit("message irc own_ctcp", 4,
server, ctcpcmd, ctcpdata, target);