Changeset fe3b017
- Timestamp:
- Mar 24, 2011, 5:14:41 PM (14 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- 1a30f05
- Parents:
- 3a3863e
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
logging.c
re5da3fe rfe3b017 179 179 FILE *file; 180 180 char *filename, *logpath; 181 char *tobuff ;181 char *tobuff, *recip; 182 182 owl_message *m; 183 183 … … 195 195 196 196 /* chop off a local realm */ 197 tobuff = short_zuser(owl_list_get_element(&(zw->recips), 0)); 197 recip = owl_zwrite_get_recip_n_with_realm(zw, 0); 198 tobuff = short_zuser(recip); 199 g_free(recip); 198 200 199 201 /* expand ~ in path names */ -
zephyr.c
r4e29ecb rfe3b017 803 803 zw.class = g_strdup(retnotice->z_class); 804 804 zw.inst = g_strdup(retnotice->z_class_inst); 805 zw.realm = g_strdup( zuser_realm(retnotice->z_recipient));805 zw.realm = g_strdup(""); 806 806 zw.opcode = g_strdup(retnotice->z_opcode); 807 807 zw.zsig = g_strdup(""); 808 808 owl_list_create(&(zw.recips)); 809 owl_list_append_element(&(zw.recips), g_strdup( tmp));809 owl_list_append_element(&(zw.recips), g_strdup(retnotice->z_recipient)); 810 810 811 811 owl_log_outgoing_zephyr_error(&zw, buff);
Note: See TracChangeset
for help on using the changeset viewer.