]> code.citadel.org Git - citadel.git/commitdiff
* ooops. Look for the QR2_SYSTEM flag in QRflags2, not QRflags.
authorArt Cancro <ajc@citadel.org>
Mon, 3 Dec 2001 22:48:16 +0000 (22:48 +0000)
committerArt Cancro <ajc@citadel.org>
Mon, 3 Dec 2001 22:48:16 +0000 (22:48 +0000)
citadel/ChangeLog
citadel/room_ops.c

index f9a6229cef63031770a1b9aea076d52fe33f8fe2..3e880e45504845eaef4f4dc11a849c42f3fc84c3 100644 (file)
@@ -1,4 +1,7 @@
  $Log$
+ Revision 580.91  2001/12/03 22:48:16  ajc
+ * ooops.  Look for the QR2_SYSTEM flag in QRflags2, not QRflags.
+
  Revision 580.90  2001/12/03 17:02:50  ajc
  * dynloader.c: fixed improperly done declaration and mallok()
 
@@ -2919,4 +2922,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 a5a0b34f65d931f6901450b9ee4f0bf8a7d8bd47..4bab8b8d0a7f57c9e774597ccf14756a0ba5c731 100644 (file)
@@ -135,7 +135,7 @@ NEWMSG:     /* By the way, we also check for the presence of new messages */
        }
 
        /* System rooms never show up in the list. */
-       if (roombuf->QRflags & QR2_SYSTEM) {
+       if (roombuf->QRflags2 & QR2_SYSTEM) {
                retval = retval & ~UA_KNOWN;
        }
        return (retval);