Update of /cvsroot/srvx/services/src
In directory usw-pr-cvs1:/tmp/cvs-serv10256/src
Modified Files:
helpfile.c
Log Message:
Restore Global's user notices to working order.
Index: helpfile.c
===================================================================
RCS file: /cvsroot/srvx/services/src/helpfile.c,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -r1.52 -r1.53
*** helpfile.c 4 Aug 2002 13:53:59 -0000 1.52
--- helpfile.c 4 Aug 2002 18:10:02 -0000 1.53
***************
*** 42,46 ****
struct handle_info *hi;
! if (IsChannelName(to)) {
message_dest = NULL;
hi = NULL;
--- 42,46 ----
struct handle_info *hi;
! if (IsChannelName(to) || *to == '$') {
message_dest = NULL;
hi = NULL;
***************
*** 157,161 ****
int ret, use_color;
! if (IsChannelName(dest)) {
message_dest = NULL;
} else if (!(message_dest = GetUserH(dest))) {
--- 157,161 ----
int ret, use_color;
! if (IsChannelName(dest) || *dest == '$') {
message_dest = NULL;
} else if (!(message_dest = GetUserH(dest))) {
|