* Fix missing arg in m<Y> next rewrite.
authorMichael Hampton <io_error@uncensored.citadel.org>
Mon, 1 Mar 2004 17:47:28 +0000 (17:47 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Mon, 1 Mar 2004 17:47:28 +0000 (17:47 +0000)
citadel/ChangeLog
citadel/messages.c

index 0d769d760bb2f8ef769f6367a7bccfa8aabacbfd..b992eeaf3107804ffa2d869a060781407eb98a11 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 614.60  2004/03/01 17:47:28  error
+ * Fix missing arg in m<Y> next rewrite.
+
  Revision 614.59  2004/03/01 17:33:30  error
  * Rewrite m<Y> next function; now uses CtdlIPC code.
 
@@ -5437,3 +5440,4 @@ 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 160be8632ff950a771e251f2578ea5584b90bbcc..108638879d493010a9f05e6a5709a3f75ca39d69 100644 (file)
@@ -1821,7 +1821,7 @@ RMSGREAD: scr_flush();
                 
                /* read the header so we can get 'from=' */
                r = CtdlIPCGetSingleMessage(ipc, msg_arr[finda], 1, 0, &msg, buf);
-               if (!strncasecmp(msg->author, fullname)) {
+               if (!strncasecmp(msg->author, fullname, sizeof(fullname))) {
                        a = lasta; /* meesa current */
                        founda = 1;
                }