Changeset 2de4f20 for zephyr.c


Ignore:
Timestamp:
Dec 22, 2003, 8:43:30 PM (20 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:
952bb256
Parents:
b0430a6
Message:
Fixed bug in pseudo logouts
Reformatted some comments
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    rb0430a6 r2de4f20  
    6666}
    6767
     68/* return 0  on success
     69 *        -1 on file error
     70 *        -2 on subscription error
     71 */
    6872int owl_zephyr_loadsubs(char *filename)
    6973{
    7074#ifdef HAVE_LIBZEPHYR
    71   /* return 0  on success
    72    *        -1 on file error
    73    *        -2 on subscription error
    74    */
    7575  FILE *file;
    7676  char *tmp, *start;
     
    475475 
    476476  /* bail if it doesn't look like a message we should reply to.  Some
    477      of this defined by the way zaway(1) works */
     477   * of this defined by the way zaway(1) works
     478   */
    478479  if (strcasecmp(owl_message_get_class(m), "message")) return;
    479480  if (strcasecmp(owl_message_get_recipient(m), ZGetSender())) return;
     
    737738#endif
    738739
    739 /* returns a buffer of subscriptions or an error message.
    740  * Caller must free the return.
     740/* Returns a buffer of subscriptions or an error message.  Caller must
     741 * free the return.
    741742 */
    742743char *owl_zephyr_getsubs()
Note: See TracChangeset for help on using the changeset viewer.