Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c412f62 authored by Brian Carlstrom's avatar Brian Carlstrom
Browse files

Fixed reversed output in netstat Recv-Q Send-Q columns

Change-Id: I2bc7ac6c886808910212432497f05e34596f5e85
parent 51a2e4d5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@ static void ipv4(const char *filename, const char *label) {
            addr2str(AF_INET, &raddr, rport, rip);

            printf("%4s  %6d %6d %-22s %-22s %s\n",
                   label, txq, rxq, lip, rip,
                   label, rxq, txq, lip, rip,
                   state2str(state));
        }
    }
@@ -136,7 +136,7 @@ static void ipv6(const char *filename, const char *label) {
            addr2str(AF_INET6, &raddr6, rport, rip);

            printf("%4s  %6d %6d %-22s %-22s %s\n",
                   label, txq, rxq, lip, rip,
                   label, rxq, txq, lip, rip,
                   state2str(state));
        }
    }