> diff --git a/src/acm.c b/src/acm.c > index e956b09..a124e93 100644 > --- a/src/acm.c > +++ b/src/acm.c > @@ -1277,7 +1277,7 @@ static void acm_process_acm_recv(struct acm_ep *ep, > struct ibv_wc *wc, struct ac > rec = (struct acm_resolve_rec *) mad->data; > acm_format_name(2, log_data, sizeof log_data, > rec->src_type, rec->src, sizeof rec->src); > - acm_log(2, "src %s\n", log_data); > + acm_log(2, "src %s\n", log_data); .. > acm_log(2, "dest %s\n", log_data);
The extra space after 'src' is intentional. It's to line up the source and destination addresses, like this: src 192.168... dest 192.168... - Sean -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
