From 1c1df7f1a76ff7d32d123e916b9c9e75254a4d87 Mon Sep 17 00:00:00 2001 From: Ethan Jackson Date: Tue, 29 Nov 2011 14:27:12 -0800 Subject: [PATCH] lacp: Remove trailing whitespace from appctl output. This will marginally simplify some unit tests in a future patch. --- lib/lacp.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/lib/lacp.c b/lib/lacp.c index 6ee55c361..5303053f7 100644 --- a/lib/lacp.c +++ b/lib/lacp.c @@ -726,35 +726,35 @@ static void ds_put_lacp_state(struct ds *ds, uint8_t state) { if (state & LACP_STATE_ACT) { - ds_put_cstr(ds, "activity "); + ds_put_cstr(ds, " activity"); } if (state & LACP_STATE_TIME) { - ds_put_cstr(ds, "timeout "); + ds_put_cstr(ds, " timeout"); } if (state & LACP_STATE_AGG) { - ds_put_cstr(ds, "aggregation "); + ds_put_cstr(ds, " aggregation"); } if (state & LACP_STATE_SYNC) { - ds_put_cstr(ds, "synchronized "); + ds_put_cstr(ds, " synchronized"); } if (state & LACP_STATE_COL) { - ds_put_cstr(ds, "collecting "); + ds_put_cstr(ds, " collecting"); } if (state & LACP_STATE_DIST) { - ds_put_cstr(ds, "distributing "); + ds_put_cstr(ds, " distributing"); } if (state & LACP_STATE_DEF) { - ds_put_cstr(ds, "defaulted "); + ds_put_cstr(ds, " defaulted"); } if (state & LACP_STATE_EXP) { - ds_put_cstr(ds, "expired "); + ds_put_cstr(ds, " expired"); } } @@ -832,7 +832,7 @@ lacp_print_details(struct ds *ds, struct lacp *lacp) ntohs(actor.port_priority)); ds_put_format(ds, "\tactor key: %u\n", ntohs(actor.key)); - ds_put_cstr(ds, "\tactor state: "); + ds_put_cstr(ds, "\tactor state:"); ds_put_lacp_state(ds, actor.state); ds_put_cstr(ds, "\n\n"); @@ -846,7 +846,7 @@ lacp_print_details(struct ds *ds, struct lacp *lacp) ntohs(slave->partner.port_priority)); ds_put_format(ds, "\tpartner key: %u\n", ntohs(slave->partner.key)); - ds_put_cstr(ds, "\tpartner state: "); + ds_put_cstr(ds, "\tpartner state:"); ds_put_lacp_state(ds, slave->partner.state); ds_put_cstr(ds, "\n"); } -- 2.43.0