Changeset 1151f0b
- Timestamp:
- Jan 10, 2008, 1:28:59 AM (17 years ago)
- Branches:
- master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- 9506feb
- Parents:
- 44f32fb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zephyr.c
r44f32fb r1151f0b 563 563 } 564 564 } else if (!strcmp(retnotice->z_message, ZSRVACK_NOTSENT)) { 565 #define BUFFLEN 1024 565 566 if (retnotice->z_recipient == NULL 566 567 || *retnotice->z_recipient == NULL 567 568 || *retnotice->z_recipient == '@') { 568 char buff[ 1024];569 char buff[BUFFLEN]; 569 570 owl_function_error("No one subscribed to class %s", retnotice->z_class); 570 s printf(buff, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class);571 snprintf(buff, BUFFLEN, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class); 571 572 owl_function_adminmsg("", buff); 572 573 } else { 573 char buff[ 1024];574 char buff[BUFFLEN]; 574 575 tmp = short_zuser(retnotice->z_recipient); 575 576 owl_function_error("%s: Not logged in or subscribing.", tmp); 576 s printf(buff, "Could not send message to %s: not logged in or subscribing to", tmp);577 snprintf(buff, BUFFLEN, "Could not send message to %s: not logged in or subscribing to", tmp); 577 578 if(strcmp(retnotice->z_class, "message")) { 578 sprintf(buff, "%s class %s, instance %s.\n", buff, 579 retnotice->z_class, 580 retnotice->z_class_inst); 579 snprintf(buff, BUFFLEN, 580 "%s class %s, instance %s.\n", buff, 581 retnotice->z_class, 582 retnotice->z_class_inst); 581 583 } else { 582 sprintf(buff, "%s messages.\n", buff); 584 snprintf(buff, BUFFLEN, 585 "%s messages.\n", buff); 583 586 } 584 587 owl_function_adminmsg("", buff);
Note: See TracChangeset
for help on using the changeset viewer.