Changeset 1e550b2


Ignore:
Timestamp:
May 26, 2009, 10:32:00 PM (15 years ago)
Author:
Nelson Elhage <nelhage@mit.edu>
Branches:
master, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
c50f589
Parents:
3ef779b
git-author:
Alex Dehnert <adehnert@mit.edu> (05/26/09 20:39:40)
git-committer:
Nelson Elhage <nelhage@mit.edu> (05/26/09 22:32:00)
Message:
Fix comments from d73e3af3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r3ef779b r1e550b2  
    743743    } else {
    744744      if (strcasecmp(retnotice->z_recipient, ""))
    745       { // personal
     745      { /* personal */
    746746        tmp=short_zuser(retnotice->z_recipient);
    747747        if(!strcasecmp(retnotice->z_class, "message") &&
    748748           !strcasecmp(retnotice->z_class_inst, "personal")) {
    749749          owl_function_makemsg("Message sent to %s.", tmp);
    750         } else if(!strcasecmp(retnotice->z_class, "message")) { // instanced, but not classed, personal
     750        } else if(!strcasecmp(retnotice->z_class, "message")) { /* instanced, but not classed, personal */
    751751          owl_function_makemsg("Message sent to %s on -i %s\n", tmp, retnotice->z_class_inst);
    752         } else { // classed personal
     752        } else { /* classed personal */
    753753          owl_function_makemsg("Message sent to %s on -c %s -i %s\n", tmp, retnotice->z_class, retnotice->z_class_inst);
    754754        }
    755755        free(tmp);
    756756      } else {
    757         // class / instance message
     757        /* class / instance message */
    758758          owl_function_makemsg("Message sent to -c %s -i %s\n", retnotice->z_class, retnotice->z_class_inst);
    759759      }
Note: See TracChangeset for help on using the changeset viewer.