]> code.citadel.org Git - citadel.git/commitdiff
* msgbase.c: cmd_opna() - increase desired_section buffer from 64 to 256 bytes
authorArt Cancro <ajc@citadel.org>
Fri, 1 Sep 2000 20:17:08 +0000 (20:17 +0000)
committerArt Cancro <ajc@citadel.org>
Fri, 1 Sep 2000 20:17:08 +0000 (20:17 +0000)
citadel/ChangeLog
citadel/msgbase.c

index 09da23ba30d857c00375117e51d66147abf8efe6..0fdae1074d3fdf40e2df188e91a10b63153a0a35 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 572.38  2000/09/01 20:17:08  ajc
+ * msgbase.c: cmd_opna() - increase desired_section buffer from 64 to 256 bytes
+
  Revision 572.37  2000/09/01 17:31:47  ajc
  * Fixed oopseth in control.c that might call fileno(NULL)
 
@@ -2033,6 +2036,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import 
-
-
-
index 49df9330e0af8d73f12654ce3f51b650ad5781b4..5dfb5f46f71e93e6f5392fcda0cd7bdeebbea4f6 100644 (file)
@@ -1192,7 +1192,7 @@ void cmd_opna(char *cmdbuf)
 {
        long msgid;
 
-       CtdlAllocUserData(SYM_DESIRED_SECTION, 64);
+       CtdlAllocUserData(SYM_DESIRED_SECTION, 256);
 
        msgid = extract_long(cmdbuf, 0);
        extract(desired_section, cmdbuf, 1);