comparison libpurple/protocols/zephyr/ZSendRaw.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: Robert French 4 * Created by: Robert French
5 * 5 *
6 * Copyright (c) 1987 by the Massachusetts Institute of Technology. 6 * Copyright (c) 1987 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
23 ZERR_NONE) 23 ZERR_NONE)
24 return (retval); 24 return (retval);
25 25
26 if ((retval = ZParseNotice(buffer, len, &newnotice)) != ZERR_NONE) 26 if ((retval = ZParseNotice(buffer, len, &newnotice)) != ZERR_NONE)
27 return (retval); 27 return (retval);
28 28
29 retval = Z_SendFragmentedNotice(&newnotice, len, NULL, Z_XmitFragment); 29 retval = Z_SendFragmentedNotice(&newnotice, len, NULL, Z_XmitFragment);
30 30
31 free(buffer); 31 free(buffer);
32 32
33 return (retval); 33 return (retval);