- Timestamp:
- Jul 21, 2011, 5:12:15 PM (13 years ago)
- Branches:
- master, release-1.10, release-1.9
- Children:
- f661cee, 092806c
- Parents:
- 14be3a5
- git-author:
- Jason Gross <jgross@mit.edu> (07/20/11 02:55:11)
- git-committer:
- Jason Gross <jgross@mit.edu> (07/21/11 17:12:15)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
message.c
rdde1b4d r6500907 125 125 p = m->attributes->pdata[i]; 126 126 127 tmpbuff = g_strdup(owl_pair_get_value(p)); 128 g_strdelimit(tmpbuff, "\n", '~'); 129 g_strdelimit(tmpbuff, "\r", '!'); 130 buff = g_strdup_printf(" %-15.15s: %s\n", owl_pair_get_key(p), tmpbuff); 131 g_free(tmpbuff); 127 buff = g_strdup(owl_pair_get_value(p)); 128 if (buff) { 129 tmpbuff = owl_text_indent(buff, 19, false); 130 g_free(buff); 131 buff = g_strdup_printf(" %-15.15s: %s\n", owl_pair_get_key(p), tmpbuff); 132 g_free(tmpbuff); 133 } 132 134 133 135 if(buff == NULL) {
Note: See TracChangeset
for help on using the changeset viewer.