- Timestamp:
- Jun 25, 2011, 3:26:15 AM (13 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- 12294d2
- Parents:
- 95b52d1
- git-author:
- David Benjamin <davidben@mit.edu> (06/24/11 22:56:15)
- git-committer:
- David Benjamin <davidben@mit.edu> (06/25/11 03:26:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zephyr.c
rd427f08 r6829afc 524 524 */ 525 525 #ifdef HAVE_LIBZEPHYR 526 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_get_field(const ZNotice_t *n, int j)526 CALLER_OWN char *owl_zephyr_get_field(const ZNotice_t *n, int j) 527 527 { 528 528 int i, count, save; … … 552 552 } 553 553 554 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_get_field_as_utf8(const ZNotice_t *n, int j)554 CALLER_OWN char *owl_zephyr_get_field_as_utf8(const ZNotice_t *n, int j) 555 555 { 556 556 int i, count, save; … … 584 584 } 585 585 #else 586 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_get_field(void *n, int j)586 CALLER_OWN char *owl_zephyr_get_field(void *n, int j) 587 587 { 588 588 return(g_strdup("")); 589 589 } 590 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_get_field_as_utf8(void *n, int j)590 CALLER_OWN char *owl_zephyr_get_field_as_utf8(void *n, int j) 591 591 { 592 592 return owl_zephyr_get_field(n, j); … … 621 621 * caller must free the return 622 622 */ 623 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_get_message(const ZNotice_t *n, const owl_message *m)623 CALLER_OWN char *owl_zephyr_get_message(const ZNotice_t *n, const owl_message *m) 624 624 { 625 625 #define OWL_NFIELDS 5 … … 942 942 #endif 943 943 944 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_zlocate(const char *user, int auth)944 CALLER_OWN char *owl_zephyr_zlocate(const char *user, int auth) 945 945 { 946 946 #ifdef HAVE_LIBZEPHYR … … 1042 1042 1043 1043 /* caller must free the return */ 1044 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_makesubline(const char *class, const char *inst, const char *recip)1044 CALLER_OWN char *owl_zephyr_makesubline(const char *class, const char *inst, const char *recip) 1045 1045 { 1046 1046 return g_strdup_printf("%s,%s,%s\n", class, inst, !strcmp(recip, "") ? "*" : recip); … … 1122 1122 * free the return. 1123 1123 */ 1124 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_getsubs(void)1124 CALLER_OWN char *owl_zephyr_getsubs(void) 1125 1125 { 1126 1126 #ifdef HAVE_LIBZEPHYR … … 1242 1242 * The caller must free the return 1243 1243 */ 1244 G_GNUC_WARN_UNUSED_RESULTchar *short_zuser(const char *in)1244 CALLER_OWN char *short_zuser(const char *in) 1245 1245 { 1246 1246 char *ptr = strrchr(in, '@'); … … 1254 1254 * The caller must free the return. 1255 1255 */ 1256 G_GNUC_WARN_UNUSED_RESULTchar *long_zuser(const char *in)1256 CALLER_OWN char *long_zuser(const char *in) 1257 1257 { 1258 1258 char *ptr = strrchr(in, '@'); … … 1282 1282 * caller must free the return. 1283 1283 */ 1284 G_GNUC_WARN_UNUSED_RESULTchar *owl_zephyr_smartstripped_user(const char *in)1284 CALLER_OWN char *owl_zephyr_smartstripped_user(const char *in) 1285 1285 { 1286 1286 char *slash, *dot, *realm, *out;
Note: See TracChangeset
for help on using the changeset viewer.