Message ID | 20220423160922.14952-1-didi.debian@cknow.org |
---|---|
State | New |
Headers | show |
Series | iw: fix double tab in mesh path header | expand |
diff --git a/mpath.c b/mpath.c index a88f89f..2a559c2 100644 --- a/mpath.c +++ b/mpath.c @@ -226,7 +226,7 @@ static int handle_mpath_dump(struct nl80211_state *state, enum id_input id) { printf("DEST ADDR NEXT HOP IFACE\tSN\tMETRIC\tQLEN\t" - "EXPTIME\t\tDTIM\tDRET\tFLAGS\tHOP_COUNT\tPATH_CHANGE\n"); + "EXPTIME\tDTIM\tDRET\tFLAGS\tHOP_COUNT\tPATH_CHANGE\n"); register_handler(print_mpath_handler, NULL); return 0; }
As reported in https://bugs.debian.org/974833, the double tab char causes a mismatch of the header and contents after 'EXPTIME'. Signed-off-by: Diederik de Haas <didi.debian@cknow.org> --- mpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)