# HG changeset patch # User Sebastien Decugis # Date 1282875257 -32400 # Node ID d5383f28b96edc2c53627392da1dd3fd03f52587 # Parent 1c2f5ee380399429a154944799b272b64191e998 Cleanup the RADIUS dump format diff -r 1c2f5ee38039 -r d5383f28b96e extensions/app_radgw/rgw_msg.c --- a/extensions/app_radgw/rgw_msg.c Fri Aug 27 10:59:51 2010 +0900 +++ b/extensions/app_radgw/rgw_msg.c Fri Aug 27 11:14:17 2010 +0900 @@ -98,7 +98,7 @@ auth[12], auth[13], auth[14], auth[15]); for (i = 0; i < msg->radius.attr_used; i++) { struct radius_attr_hdr *attr = (struct radius_attr_hdr *)(msg->radius.buf + msg->radius.attr_pos[i]); - fd_log_debug(" - len:%3hhu, type:0x%02hhx (%s)\n", attr->length, attr->type, rgw_msg_attrtype_str(attr->type)); + fd_log_debug(" - type: 0x%02hhx (%s)\n len: %3hhu,", attr->length, attr->type, rgw_msg_attrtype_str(attr->type)); radius_msg_dump_attr_val(attr); } fd_log_debug("-----------------------------\n");