openbsd-ports/net/ircd-ratbox/patches/patch-src_sslproc_c
simon cef96c6e30 import ircd-ratbox
ircd-ratbox is an advanced, stable and fast ircd.
It is the primary ircd used on EFNet, combining the stability of an ircd
required for a large production network together with a rich set of
features, making it also suitable for use on smaller networks. 

Features include:
 * optional SSL support to enable encrypted connections between clients
   and servers, as well as server to server links
 * support for SSL only channels (channel mode +S)
 * uses sqlite3 for handling and storing k/x/d lines
 * support for global CIDR limits
 * provides adminwall command allowing admins to broadcast messages to
   each other
 * support to force nick changes

request, testing and feedback by Michiel van Baak
setusercontext() idea from form@ via bernd@
tested on armish and ok by sthen@
2009-02-09 09:41:54 +00:00

13 lines
508 B
Plaintext

$OpenBSD: patch-src_sslproc_c,v 1.1.1.1 2009/02/09 09:41:54 simon Exp $
--- src/sslproc.c.orig Tue Dec 16 18:32:08 2008
+++ src/sslproc.c Sat Feb 7 20:00:28 2009
@@ -339,7 +339,7 @@ ssl_process_zipstats(ssl_ctl_t * ctl, ssl_ctl_buf_t *
struct Client *server;
struct ZipStats *zips;
int parc;
- char *parv[6];
+ char *parv[7];
parc = rb_string_to_array(ctl_buf->buf, parv, 6);
server = find_server(NULL, parv[1]);
if(server == NULL || server->localClient == NULL || !IsCapable(server, CAP_ZIP))