openbsd-ports/net/irssi/patches/patch-src_fe-text_statusbar-config_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

21 lines
731 B
Plaintext

$OpenBSD: patch-src_fe-text_statusbar-config_c,v 1.1 2011/11/16 10:16:57 sthen Exp $
--- src/fe-text/statusbar-config.c.orig Sun Nov 6 05:02:18 2011
+++ src/fe-text/statusbar-config.c Sun Nov 6 05:02:34 2011
@@ -25,6 +25,7 @@
#include "settings.h"
#include "levels.h"
#include "lib-config/iconfig.h"
+#include "misc.h"
#include "statusbar.h"
#include "printtext.h"
@@ -550,7 +551,7 @@ static void cmd_statusbar(const char *data)
/* call the subcommand */
signal = g_strconcat("command statusbar ", cmd, NULL);
- g_strdown(signal);
+ ascii_strdown(signal);
if (!signal_emit(signal, 4, params, NULL, NULL, node)) {
printformat(NULL, NULL, MSGLEVEL_CLIENTERROR,
TXT_STATUSBAR_UNKNOWN_COMMAND, cmd);