From: Art Cancro Date: Tue, 8 Jun 1999 02:01:29 +0000 (+0000) Subject: * Session no longer locks up when an express message is cancelled X-Git-Tag: v7.86~7669 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=a1087b4317dcf14c95d7915375d82ab4ca108f28;p=citadel.git * Session no longer locks up when an express message is cancelled * The default Citadel server is now "localhost" instead of uncnsrd * Added some documentation --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 3338d01bf..cc562e926 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 7 21:59:45 EDT 1999 Art Cancro + * 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 * roomops.c: made room banner graphics more reliable * messages.c: added code to prevent accidental "double-posting" diff --git a/webcit/paging.c b/webcit/paging.c index 3fb54f9a7..50d637720 100644 --- a/webcit/paging.c +++ b/webcit/paging.c @@ -79,19 +79,18 @@ void page_user(void) if (strcmp(sc, "Send message")) { wprintf("Message was not sent.
\n"); - return; - } - serv_printf("SEXP %s|%s", recp, msgtext); - serv_gets(buf); - - if (buf[0] == '2') { - wprintf("Message has been sent to "); - escputs(recp); - wprintf(".
\n"); } else { - wprintf("%s
\n", &buf[4]); + serv_printf("SEXP %s|%s", recp, msgtext); + serv_gets(buf); + + if (buf[0] == '2') { + wprintf("Message has been sent to "); + escputs(recp); + wprintf(".
\n"); + } else { + wprintf("%s
\n", &buf[4]); + } } - wDumpContent(1); } diff --git a/webcit/webcit.h b/webcit/webcit.h index e015cc963..2c7654afd 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -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) diff --git a/webcit/wildmat.c b/webcit/wildmat.c index c9e1db0a2..f060ac818 100644 --- a/webcit/wildmat.c +++ b/webcit/wildmat.c @@ -36,6 +36,11 @@ * 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;