From: Eric W. <war...@us...> - 2001-11-17 22:50:11
|
Update of /cvsroot/gaim/gaim/src/protocols/yahoo In directory usw-pr-cvs1:/tmp/cvs-serv753/protocols/yahoo Modified Files: yahoo.c Log Message: it's easier for me to see services in hex Index: yahoo.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/yahoo.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- yahoo.c 2001/11/17 19:27:39 1.13 +++ yahoo.c 2001/11/17 22:50:08 1.14 @@ -658,7 +658,7 @@ yahoo_process_list(gc, pkt); break; default: - debug_printf("unhandled service %d\n", pkt->service); + debug_printf("unhandled service 0x%02x\n", pkt->service); break; } } @@ -705,7 +705,7 @@ pkt = yahoo_packet_new(0, 0, 0); pkt->service = yahoo_get16(yd->rxqueue + pos); pos += 2; - debug_printf("Yahoo Service: %d Status: %d\n", pkt->service, pkt->status); + debug_printf("Yahoo Service: 0x%02x Status: %d\n", pkt->service, pkt->status); pkt->status = yahoo_get32(yd->rxqueue + pos); pos += 4; pkt->id = yahoo_get32(yd->rxqueue + pos); pos += 4; |