Changeset 03955f3
- Timestamp:
- Jul 2, 2003, 7:33:14 PM (20 years ago)
- Branches:
- master, barnowl_perlaim, debian, owl, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
- Children:
- e6449bc
- Parents:
- 373b7e7
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
config.h.in
r373b7e7 r03955f3 43 43 #undef HAVE_LIBZEPHYR 44 44 45 #undef HAVE_ZEPHYR_ZEPHYR_H46 47 45 /* Define if libzephyr contains ZInitLocationInfo */ 48 46 #undef HAVE_LIBZEPHYR_ZINITLOCATIONINFO -
configure
r373b7e7 r03955f3 1737 1737 fi 1738 1738 1739 for ac_hdr in strings.h sys/ioctl.h unistd.h zephyr/zephyr.h1739 for ac_hdr in strings.h sys/ioctl.h unistd.h 1740 1740 do 1741 1741 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` -
stylefunc.c
r09489b89 r03955f3 87 87 } 88 88 owl_fmtext_append_normal(fm, frombuff); 89 if (strcasecmp(owl_message_get_realm(m), owl_zephyr_get_realm()) {89 if (strcasecmp(owl_message_get_realm(m), owl_zephyr_get_realm())) { 90 90 owl_fmtext_append_normal(fm, " {"); 91 91 owl_fmtext_append_normal(fm, owl_message_get_realm(m)); … … 261 261 } 262 262 owl_fmtext_append_normal(fm, " for "); 263 ptr=short_zuser(owl_ zephyr_get_instance(m));263 ptr=short_zuser(owl_message_get_instance(m)); 264 264 owl_fmtext_append_bold(fm, ptr); 265 265 owl_free(ptr); … … 283 283 owl_fmtext_append_normal(fm, "} "); 284 284 } 285 if (strc cmp(owl_zephyr_get_opcode(m), "")) {285 if (strcmp(owl_message_get_opcode(m), "")) { 286 286 owl_fmtext_append_normal(fm, " ["); 287 287 owl_fmtext_append_normal(fm, owl_message_get_opcode(m)); -
zephyr.c
r09489b89 r03955f3 761 761 return(out); 762 762 } else { 763 sprintf(tmpbuff, "<%s,%s,%s>\n%s", sub.zsub_class, sub.zsub_classinst, sub.zsub_recipient, buff);763 sprintf(tmpbuff, "<%s,%s,%s>\n%s", sub.zsub_class, sub.zsub_classinst, sub.zsub_recipient, out); 764 764 strcpy(out, tmpbuff); 765 765 }
Note: See TracChangeset
for help on using the changeset viewer.