* Session no longer locks up when an express message is cancelled
authorArt Cancro <ajc@citadel.org>
Tue, 8 Jun 1999 02:01:29 +0000 (02:01 +0000)
committerArt Cancro <ajc@citadel.org>
Tue, 8 Jun 1999 02:01:29 +0000 (02:01 +0000)
        * The default Citadel server is now "localhost" instead of uncnsrd
        * Added some documentation

webcit/ChangeLog
webcit/paging.c
webcit/webcit.h
webcit/wildmat.c

index 3338d01bf1628fcc433996324c1dcabc125db535..cc562e9261348dfd9e53ae8e01f1f547a6d16969 100644 (file)
@@ -1,3 +1,8 @@
+Mon Jun  7 21:59:45 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
+       * Session no longer locks up when an express message is cancelled
+       * The default Citadel server is now "localhost" instead of uncnsrd
+       * Added some documentation
+
 Thu Jun  3 12:18:49 EDT 1999 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
        * roomops.c: made room banner graphics more reliable
        * messages.c: added code to prevent accidental "double-posting"
index 3fb54f9a7a13653664f62f70b7d14fa67b41afd2..50d63772012f25f4a9a17761bd31a2649762da6e 100644 (file)
@@ -79,19 +79,18 @@ void page_user(void)
 
        if (strcmp(sc, "Send message")) {
                wprintf("<EM>Message was not sent.</EM><BR>\n");
-               return;
-       }
-       serv_printf("SEXP %s|%s", recp, msgtext);
-       serv_gets(buf);
-
-       if (buf[0] == '2') {
-               wprintf("<EM>Message has been sent to ");
-               escputs(recp);
-               wprintf(".</EM><BR>\n");
        } else {
-               wprintf("<EM>%s</EM><BR>\n", &buf[4]);
+               serv_printf("SEXP %s|%s", recp, msgtext);
+               serv_gets(buf);
+
+               if (buf[0] == '2') {
+                       wprintf("<EM>Message has been sent to ");
+                       escputs(recp);
+                       wprintf(".</EM><BR>\n");
+               } else {
+                       wprintf("<EM>%s</EM><BR>\n", &buf[4]);
+               }
        }
-
        wDumpContent(1);
 }
 
index e015cc963a721492e5c367af9f953ca48299eec6..2c7654afd27b13d26c40dd393036305801b2f715 100644 (file)
@@ -7,7 +7,7 @@
 #define DEVELOPER_ID   0
 #define CLIENT_ID      4
 #define CLIENT_VERSION 200
-#define DEFAULT_HOST   "uncnsrd.mt-kisco.ny.us"
+#define DEFAULT_HOST   "localhost"
 #define DEFAULT_PORT   "504"
 #define LB             (1)
 #define RB             (2)
index c9e1db0a2c65b000d129fffc1095414b14ca81de..f060ac818877037852b3f8dc554f5b9a3a6add08 100644 (file)
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  *
  * $Log$
+ * Revision 1.3  1999/06/08 02:01:29  ajc
+ *         * Session no longer locks up when an express message is cancelled
+ *         * The default Citadel server is now "localhost" instead of uncnsrd
+ *         * Added some documentation
+ *
  * Revision 1.2  1999/06/03 03:48:52  ajc
  *         * Ditched the frames mode completely.  It wasn't working properly in,
  *           among other places, IE 5.  Die, Bill, Die.
@@ -170,7 +175,7 @@ char *source;                       /* source operand */
                        return (*++pattern ? star(source, pattern) : 1);
                case '[':
                        /* [^....] means inverse character class. */
-                       if (reverse = pattern[1] == '^') {
+                       if ((reverse = pattern[1]) == '^') {
                                pattern++;
                        }
                        for (last = 0400, matched = 0;