]> git.pld-linux.org Git - packages/BitchX.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Fri, 18 Jun 2004 11:51:24 +0000 (11:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    BitchX-dcc-force-port.patch -> 1.3
    BitchX-gcc33.patch -> 1.2
    BitchX-names.patch -> 1.2

BitchX-dcc-force-port.patch [deleted file]
BitchX-gcc33.patch [deleted file]
BitchX-names.patch [deleted file]

diff --git a/BitchX-dcc-force-port.patch b/BitchX-dcc-force-port.patch
deleted file mode 100644 (file)
index 91a7b8a..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-Patch to enable forcing of the local port bitchx uses for DCC.
-
---- BitchX/include/vars.h.old  Sun Nov  4 17:18:23 2001
-+++ BitchX/include/vars.h      Sun Nov  4 17:20:30 2001
-@@ -89,6 +89,7 @@
-       DCC_BLOCK_SIZE_VAR,
-       DCC_DLDIR_VAR , 
-       DCC_FAST_VAR, 
-+      DCC_FORCE_PORT_VAR,
-       DCC_GET_LIMIT_VAR,
-       DCC_MAX_AUTOGET_SIZE_VAR ,
-       DCC_QUEUE_LIMIT_VAR,
---- BitchX/source/vars.c.old   Sun Nov  4 17:16:10 2001
-+++ BitchX/source/vars.c       Sun Nov  4 17:15:55 2001
-@@ -189,6 +189,7 @@
-       { "DCC_BLOCK_SIZE",0,           INT_TYPE_VAR,   DEFAULT_DCC_BLOCK_SIZE, NULL, NULL, 0, VIF_BITCHX },
-       { "DCC_DLDIR",0,                STR_TYPE_VAR,   0, NULL, NULL, 0, VIF_BITCHX },
-       { "DCC_FAST",0,                 BOOL_TYPE_VAR,  DEFAULT_DCC_FAST, NULL, NULL, 0, VIF_BITCHX },
-+      { "DCC_FORCE_PORT",0,           INT_TYPE_VAR,   0, NULL, NULL, 0, VIF_BITCHX },
-       { "DCC_GET_LIMIT",0,            INT_TYPE_VAR,   DEFAULT_DCC_GET_LIMIT, NULL, NULL, 0, VIF_BITCHX },
-       { "DCC_MAX_AUTOGET_SIZE",0,     INT_TYPE_VAR,   DEFAULT_MAX_AUTOGET_SIZE, NULL, NULL, 0, VIF_BITCHX },
-       { "DCC_QUEUE_LIMIT",0,          INT_TYPE_VAR,   DEFAULT_DCC_QUEUE_LIMIT, NULL, NULL, 0, VIF_BITCHX },
---- BitchX/source/dcc.c.old    Sun Nov  4 17:16:25 2001
-+++ BitchX/source/dcc.c        Sun Nov  4 17:18:00 2001
-@@ -620,7 +620,9 @@
-               if (get_int_var(RANDOM_LOCAL_PORTS_VAR))
-                       portnum = random_number(65535 - 1024) + 1024;
--
-+              if (get_int_var(DCC_FORCE_PORT_VAR))
-+                      portnum = get_int_var(DCC_FORCE_PORT_VAR);
-+
- #ifdef DCC_CNCT_PEND
-               flags |= DCC_CNCT_PEND;
- #endif
diff --git a/BitchX-gcc33.patch b/BitchX-gcc33.patch
deleted file mode 100644 (file)
index 45f6faf..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
---- BitchX/source/status.c.orig        2003-06-26 14:58:04.000000000 +0200
-+++ BitchX/source/status.c     2003-06-26 14:58:16.000000000 +0200
-@@ -1213,7 +1213,7 @@
-  * current-type window, although i think they should go to all windows.
-  */
- #define STATUS_VAR(x) \
--static        char    *status_user ## x ## (Window *window)                   \
-+static        char    *status_user ## x (Window *window)                      \
- {                                                                     \
-       char    *text;                                                  \
-                                                                       \
diff --git a/BitchX-names.patch b/BitchX-names.patch
deleted file mode 100644 (file)
index 95b1522..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
---- BitchX/source/names.c.orig Sat May 10 22:34:52 2003
-+++ BitchX/source/names.c      Sat May 10 22:37:48 2003
-@@ -12,7 +12,7 @@
- #include "irc.h"
--static char cvsrevision[] = "$Id$";
-+static char cvsrevision[] = "$Id$";
- CVS_REVISION(names_c)
- #include "struct.h"
-@@ -572,7 +572,7 @@
-       *nmodes = 0;
-       *nargs = 0;
--      for (; *modes && strlen(nmodes) < sizeof(nmodes)-2; modes++)
-+      for (; *modes && (strlen(nmodes) + 2) < sizeof nmodes; modes++)
-       {
-               isbanned = isopped = isvoiced = 0;
-               switch (*modes) 
-@@ -742,7 +742,8 @@
-    /* modes which can be done multiple times are added here */
--      for (tucm = ucm; tucm && strlen(nmodes) < sizeof(nmodes)-2; tucm = tucm->next)
-+      for (tucm = ucm; tucm && (strlen(nmodes) + 2) < sizeof nmodes;
-+              tucm = tucm->next)
-       {
-               if (tucm->o_ed) 
-               {
-@@ -1003,7 +1004,7 @@
-                               malloc_strcpy(key, next_arg(rest, &rest));
-                       else
-                       {
--                              if (rest && *key && !my_strnicmp(rest, *key, strlen(*key)))
-+                              if (rest && *key && (!my_strnicmp(rest, *key, strlen(*key)) || rest[0] == '*'))
-                                       next_arg(rest, &rest);
-                               new_free(key);
-                       }
This page took 0.138505 seconds and 4 git commands to generate.