Changeset 10e3963


Ignore:
Timestamp:
Jan 23, 2008, 11:20:12 PM (16 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
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:
cab045b, 61abb18
Parents:
5ff830a
Message:
Fix the error messages sending to users who don't exist or aren't
signed on.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r60c2e1e r10e3963  
    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);
    578577      if(strcmp(retnotice->z_class, "message")) {
    579578        snprintf(buff, BUFFLEN,
    580                  "%s class %s, instance %s.\n", buff,
     579                 "Could not send message to %s: "
     580                 "not logged in or subscribing to class %s, instance %s.\n",
     581                 tmp,
    581582                 retnotice->z_class,
    582583                 retnotice->z_class_inst);
    583584      } else {
    584585        snprintf(buff, BUFFLEN,
    585                  "%s messages.\n", buff);
     586                 "Could not send message to %s: "
     587                 "not logged in or subscribing to messages.\n",
     588                 tmp);
    586589      }
    587590      owl_function_adminmsg("", buff);
Note: See TracChangeset for help on using the changeset viewer.