Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r10e3963 r60c2e1e  
    575575      tmp = short_zuser(retnotice->z_recipient);
    576576      owl_function_error("%s: Not logged in or subscribing.", tmp);
     577      snprintf(buff, BUFFLEN, "Could not send message to %s: not logged in or subscribing to", tmp);
    577578      if(strcmp(retnotice->z_class, "message")) {
    578579        snprintf(buff, BUFFLEN,
    579                  "Could not send message to %s: "
    580                  "not logged in or subscribing to class %s, instance %s.\n",
    581                  tmp,
     580                 "%s class %s, instance %s.\n", buff,
    582581                 retnotice->z_class,
    583582                 retnotice->z_class_inst);
    584583      } else {
    585584        snprintf(buff, BUFFLEN,
    586                  "Could not send message to %s: "
    587                  "not logged in or subscribing to messages.\n",
    588                  tmp);
     585                 "%s messages.\n", buff);
    589586      }
    590587      owl_function_adminmsg("", buff);
Note: See TracChangeset for help on using the changeset viewer.