Author: ume
Date: Thu Jan  5 11:44:27 2017
New Revision: 311426
URL: https://svnweb.freebsd.org/changeset/base/311426

Log:
  When displaying netstat details with libxo in JSON
  or XML modes, the value conversion for tcp6 and udp6
  port numbers drops last digit.
  
  PR:           215682
  MFC after:    3 days

Modified:
  head/usr.bin/netstat/inet6.c

Modified: head/usr.bin/netstat/inet6.c
==============================================================================
--- head/usr.bin/netstat/inet6.c        Thu Jan  5 11:43:47 2017        
(r311425)
+++ head/usr.bin/netstat/inet6.c        Thu Jan  5 11:44:27 2017        
(r311426)
@@ -1290,7 +1290,7 @@ inet6print(const char *container, struct
 
        xo_emit("{d:target/%-*.*s} ", width, width, line);
 
-       plen = strlen(cp) - 1;
+       plen = strlen(cp);
        alen--;
        xo_emit("{e:address/%*.*s}{e:port/%*.*s}", alen, alen, line, plen,
            plen, cp);
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to