comparison libgaim/protocols/oscar/family_bos.c @ 15085:f3573d941d66

[gaim-migrate @ 17871] Minor cleanup. Mostly make some functions void instead of int where the return value was always 0 and wasn't used committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Sat, 02 Dec 2006 08:03:45 +0000
parents 60b1bc8dbf37
children
comparison
equal deleted inserted replaced
15084:e0d70bba8290 15085:f3573d941d66
76 * The group permission mask allows you to keep users of a certain 76 * The group permission mask allows you to keep users of a certain
77 * class or classes from talking to you. The mask should be 77 * class or classes from talking to you. The mask should be
78 * a bitwise OR of all the user classes you want to see you. 78 * a bitwise OR of all the user classes you want to see you.
79 * 79 *
80 */ 80 */
81 int aim_bos_setgroupperm(OscarData *od, FlapConnection *conn, guint32 mask) 81 void
82 aim_bos_setgroupperm(OscarData *od, FlapConnection *conn, guint32 mask)
82 { 83 {
83 return aim_genericreq_l(od, conn, 0x0009, 0x0004, &mask); 84 aim_genericreq_l(od, conn, 0x0009, 0x0004, &mask);
84 } 85 }
85 86
86 /* 87 /*
87 * Stubtypes 0x0005, 0x0006, 0x0007, and 0x0008 - Modify permit/deny lists. 88 * Stubtypes 0x0005, 0x0006, 0x0007, and 0x0008 - Modify permit/deny lists.
88 * 89 *