comparison libpurple/protocols/oscar/family_odir.c @ 22856:ab2322195dab

Minor changes... mostly whitespace related. Also changed some functions in family_admin.c to be void instead of returning the same int every time, and fixed a tiny memleak in family_admin.c. Oh, I think there was a variable in family_icbm.c that was being redeclared inside of a block--functionally it was fine, but it could have led to confusion.
author Mark Doliner <mark@kingant.net>
date Mon, 05 May 2008 09:22:46 +0000
parents 979a81468e19
children 9c0ee2491ed1
comparison
equal deleted inserted replaced
22845:61e0bcbf31ab 22856:ab2322195dab
128 128
129 snacid = aim_cachesnac(od, 0x000f, 0x0002, 0x0000, NULL, 0); 129 snacid = aim_cachesnac(od, 0x000f, 0x0002, 0x0000, NULL, 0);
130 flap_connection_send_snac(od, conn, 0x000f, 0x0002, 0x0000, snacid, &bs); 130 flap_connection_send_snac(od, conn, 0x000f, 0x0002, 0x0000, snacid, &bs);
131 131
132 byte_stream_destroy(&bs); 132 byte_stream_destroy(&bs);
133 133
134 return 0; 134 return 0;
135 } 135 }
136 136
137 137
138 /** 138 /**
163 aim_tlvlist_write(&bs, &tlvlist); 163 aim_tlvlist_write(&bs, &tlvlist);
164 aim_tlvlist_free(tlvlist); 164 aim_tlvlist_free(tlvlist);
165 165
166 snacid = aim_cachesnac(od, 0x000f, 0x0002, 0x0000, NULL, 0); 166 snacid = aim_cachesnac(od, 0x000f, 0x0002, 0x0000, NULL, 0);
167 flap_connection_send_snac(od, conn, 0x000f, 0x0002, 0x0000, snacid, &bs); 167 flap_connection_send_snac(od, conn, 0x000f, 0x0002, 0x0000, snacid, &bs);
168 168
169 byte_stream_destroy(&bs); 169 byte_stream_destroy(&bs);
170 170
171 return 0; 171 return 0;
172 } 172 }
173 173
174 174
175 /** 175 /**