Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • zephyr.c

    r451db9e re2a620b  
    516516  }
    517517  /* deal with MIT Discuss messages */
    518   else if (!strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3 ($5)\nSubject: $4")) {
     518  else if (!strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3 ($5)\nSubject: $4") ||
     519           !strcasecmp(n->z_default_format, "New transaction [$1] entered in $2\nFrom: $3\nSubject: $4")) {
    519520    char *msg, *field1, *field2, *field3, *field4, *field5;
    520521   
     
    814815    ZGetLocations(&locations,&one);
    815816    myuser=short_zuser(user);
    816     sprintf(out, "%s%s: %s\t%s\t%s\n", out, myuser,
     817    sprintf(out + strlen(out), "%s: %s\t%s\t%s\n", myuser,
    817818            locations.host ? locations.host : "?",
    818819            locations.tty ? locations.tty : "?",
     
    12031204
    12041205#ifdef HAVE_LIBZEPHYR
    1205 void owl_zephyr_process_events() {
     1206void owl_zephyr_process_events(owl_dispatch *d) {
    12061207  int zpendcount=0;
    12071208  ZNotice_t notice;
     
    12351236
    12361237#else
    1237 void owl_zephyr_process_events() {
    1238  
    1239 }
    1240 #endif
     1238void owl_zephyr_process_events(owl_dispatch *d) {
     1239 
     1240}
     1241#endif
Note: See TracChangeset for help on using the changeset viewer.