Changeset bf73bdd


Ignore:
Timestamp:
Dec 25, 2003, 10:39:04 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:
4357be8
Parents:
24dc9ce
Message:
Fixed memory bug on receiving pings
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r24dc9ce rbf73bdd  
    11$Id$
    22
     32.1.2
     4        removed unused filter_depth variable
     5        Fixed memory bug on receiving pings
     6       
    372.1.1
    48        Filters of filters now work.
  • filter.c

    rfc57e84 rbf73bdd  
    55
    66#define OWL_FILTER_MAXRECURSE 20
    7 
    8 int filter_depth;
    97
    108int owl_filter_init_fromstring(owl_filter *f, char *name, char *string)
  • owl.h

    r24dc9ce rbf73bdd  
    2020static const char owl_h_fileIdent[] = "$Id$";
    2121
    22 #define OWL_VERSION         2.1.1
    23 #define OWL_VERSION_STRING "2.1.1"
     22#define OWL_VERSION         2.1.2
     23#define OWL_VERSION_STRING "2.1.2"
    2424
    2525/* Feature that is being tested to redirect stderr through a pipe.
  • zephyr.c

    r2b86d14 rbf73bdd  
    316316
    317317#ifdef HAVE_LIBZEPHYR
    318 /* return a pointer to the message, place the message length in k */
     318/* return a pointer to the message, place the message length in k
     319 * caller must free the return
     320 */
    319321char *owl_zephyr_get_message(ZNotice_t *n)
    320322{
    321323  if (!strcasecmp(n->z_opcode, "ping")) {
    322     return("");
     324    return(owl_strdup(""));
    323325  }
    324326
Note: See TracChangeset for help on using the changeset viewer.