Changeset 9119a47
- Timestamp:
- Oct 17, 2003, 10:37:55 PM (21 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- c15bbfb
- Parents:
- 11a7c6a
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
rf51bc78 r9119a47 7 7 Enable in owl.h with: OWL_STDERR_REDIR 1 8 8 Reverted some error messages to makemsg's 9 Create an admin message explaning that a zephyr couldn't 10 be sent 9 11 10 12 2.0.9-pre-2 -
zephyr.c
rb4db911 r9119a47 429 429 } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) { 430 430 if (strcasecmp(retnotice->z_class, "message")) { 431 char buff[1024]; 431 432 owl_function_error("Not logged in or not subscribing to class %s, instance %s", 432 433 retnotice->z_class, retnotice->z_class_inst); 434 435 sprintf(buff, "Could not send message to %s: not logged in or subscribing to messages.\n", tmp); 436 owl_function_adminmsg("", buff); 433 437 } else { 438 char buff[1024]; 434 439 tmp = short_zuser(retnotice->z_recipient); 435 440 owl_function_error("%s: Not logged in or subscribing to messages.", 436 441 tmp); 442 443 sprintf(buff, "Could not send message to %s: not logged in or subscribing to messages.\n", tmp); 444 owl_function_adminmsg("", buff); 437 445 owl_free(tmp); 438 446 }
Note: See TracChangeset
for help on using the changeset viewer.