comparison src/protocols/oscar/msgcookie.c @ 4159:3f267c74e50a

[gaim-migrate @ 4387] A few days ago I added a feature that sometimes put cool little random characters after people's aim info or away messages. Unfortunately, the world just isn't ready for this feature, so I feel obligated to remove it. I'm sorry. He would have wanted it this way. committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 31 Dec 2002 05:24:17 +0000
parents 07283934dedd
children 714fc8f45cf2
comparison
equal deleted inserted replaced
4158:a638bc9454a6 4159:3f267c74e50a
129 129
130 return NULL; 130 return NULL;
131 } 131 }
132 132
133 #if 0 /* debugging feature */ 133 #if 0 /* debugging feature */
134 faim_internal int aim_dumpcookie(aim_msgcookie_t *cookie) 134 faim_internal int aim_dumpcookie(aim_session_t *sess, aim_msgcookie_t *cookie)
135 { 135 {
136 136
137 if (!cookie) 137 if (!cookie)
138 return -EINVAL; 138 return -EINVAL;
139 139
140 printf("\tCookie at %p: %d/%s with %p, next %p\n", 140 faimdprintf(sess, 0, "\tCookie at %p: %d/%s with %p, next %p\n", cookie,
141 cookie, cookie->type, cookie->cookie, 141 cookie->type, cookie->cookie, cookie->data, cookie->next);
142 cookie->data, cookie->next);
143 142
144 return 0; 143 return 0;
145 } 144 }
146 #endif 145 #endif
147 146