Changeset 4eb4c0f for protocols/oscar
- Timestamp:
- 2008-02-16T17:15:31Z (17 years ago)
- Branches:
- master
- Children:
- fd9fa52
- Parents:
- 8961950 (diff), ca60550 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- protocols/oscar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/oscar/Makefile
r8961950 r4eb4c0f 18 18 all: oscar_mod.o 19 19 check: all 20 lcov: 20 lcov: check 21 21 gcov: 22 22 gcov *.c -
protocols/oscar/oscar.c
r8961950 r4eb4c0f 1066 1066 g_snprintf(tmp, BUF_LONG, "%s", args->msg); 1067 1067 } else { 1068 int i;1068 aim_mpmsg_section_t *part; 1069 1069 1070 1070 *tmp = 0; 1071 for (i = 0; i < args->mpmsg.numparts; i ++) { 1072 g_strlcat(tmp, (char*) args->mpmsg.parts[i].data, BUF_LONG); 1073 g_strlcat(tmp, "\n", BUF_LONG); 1071 for (part = args->mpmsg.parts; part; part = part->next) { 1072 if (part->data) { 1073 g_strlcat(tmp, (char*) part->data, BUF_LONG); 1074 g_strlcat(tmp, "\n", BUF_LONG); 1075 } 1074 1076 } 1075 1077 }
Note: See TracChangeset
for help on using the changeset viewer.