Mercurial > pidgin.yaz
comparison libpurple/protocols/zephyr/ZSendRLst.c @ 31534:a8cc50c2279f
Remove trailing whitespace
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 04 Jan 2011 06:55:30 +0000 |
parents | 5fe8042783c1 |
children |
comparison
equal
deleted
inserted
replaced
31533:44f53d3fc54f | 31534:a8cc50c2279f |
---|---|
3 * | 3 * |
4 * Created by: John T. Kohl | 4 * Created by: John T. Kohl |
5 * | 5 * |
6 * Copyright (c) 1988 by the Massachusetts Institute of Technology. | 6 * Copyright (c) 1988 by the Massachusetts Institute of Technology. |
7 * For copying and distribution information, see the file | 7 * For copying and distribution information, see the file |
8 * "mit-copyright.h". | 8 * "mit-copyright.h". |
9 */ | 9 */ |
10 | 10 |
11 #include "internal.h" | 11 #include "internal.h" |
12 | 12 |
13 #if 0 | 13 #if 0 |
28 Code_t retval; | 28 Code_t retval; |
29 ZNotice_t newnotice; | 29 ZNotice_t newnotice; |
30 char *buffer; | 30 char *buffer; |
31 int len; | 31 int len; |
32 | 32 |
33 if ((retval = ZFormatRawNoticeList(notice, list, nitems, &buffer, | 33 if ((retval = ZFormatRawNoticeList(notice, list, nitems, &buffer, |
34 &len)) != ZERR_NONE) | 34 &len)) != ZERR_NONE) |
35 return (retval); | 35 return (retval); |
36 | 36 |
37 if ((retval = ZParseNotice(buffer, len, &newnotice)) != ZERR_NONE) | 37 if ((retval = ZParseNotice(buffer, len, &newnotice)) != ZERR_NONE) |
38 return (retval); | 38 return (retval); |
39 | 39 |
40 retval = Z_SendFragmentedNotice(&newnotice, len, NULL, send_routine); | 40 retval = Z_SendFragmentedNotice(&newnotice, len, NULL, send_routine); |
41 | 41 |
42 free(buffer); | 42 free(buffer); |
43 | 43 |
44 return (retval); | 44 return (retval); |