Changeset 269ed34 for zephyr.c


Ignore:
Timestamp:
Oct 21, 2003, 6:08:51 AM (21 years ago)
Author:
James M. Kretchmar <kretch@mit.edu>
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:
1077753b
Parents:
49d467c
Message:
Fixed bug in reporting when no one is subbed to a class
Added an extral newline in logging incoming zephyrs
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r9119a47 r269ed34  
    430430    if (strcasecmp(retnotice->z_class, "message")) {
    431431      char buff[1024];
    432       owl_function_error("Not logged in or not subscribing to class %s, instance %s",
    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);
     432      owl_function_error("No one subscribed to class class %s", retnotice->z_class);
     433      sprintf(buff, "Could not send message to class %s: no one subscribed.\n", retnotice->z_class);
    436434      owl_function_adminmsg("", buff);
    437435    } else {
Note: See TracChangeset for help on using the changeset viewer.