Changeset 15b34fd for zephyr.c


Ignore:
Timestamp:
Jan 4, 2005, 11:04:52 PM (19 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:
180cd15
Parents:
95474d7
Message:
Fixed some small memory leaks in logging if files unwriteable
If the variable logfilter is set it names a filter.  Any messages
  matching this filter are logged.  This is an independent
  mechanism from the other logging variables.  If you want to
  control all logging with logfilter the other variables must be
  set to their default (off) settings. [BZ 37]
Relatively substantial changes made under the hood to support
  filter logging.  Now have more consistent interfaces to
  creating messages etc.  Still needs more work though.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r95474d7 r15b34fd  
    518518#ifdef HAVE_LIBZEPHYR
    519519  char *tmpbuff, *myuser, *to;
     520  owl_message *mout;
    520521 
    521522  /* bail if it doesn't look like a message we should reply to.  Some
     
    554555
    555556  /* display the message as an admin message in the receive window */
    556   owl_function_make_outgoing_zephyr(owl_global_get_zaway_msg(&g), tmpbuff, "Automated reply:");
     557  mout=owl_function_make_outgoing_zephyr(owl_global_get_zaway_msg(&g), tmpbuff, "Automated reply:");
     558  owl_function_add_message(mout);
    557559  owl_free(tmpbuff);
    558560#endif
Note: See TracChangeset for help on using the changeset viewer.