mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-03 01:23:49 +00:00
Fix tcplist for the version of lsof in the ports tree. It wasn't parsing
lsof's output correctly. PR: 9191 Submitted by: Andrew Stevenson <andrew@ugh.net.au>
This commit is contained in:
parent
ef62a281ed
commit
10d709045e
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=19868
11
sysutils/tcplist/files/patch-03
Normal file
11
sysutils/tcplist/files/patch-03
Normal file
@ -0,0 +1,11 @@
|
||||
--- lsof.c.orig Tue Mar 9 11:49:40 1999
|
||||
+++ lsof.c Tue Mar 9 11:51:17 1999
|
||||
@@ -27,7 +27,7 @@
|
||||
#define LSOFCMD "lsof -HPsli TCP | awk '{print $3,$NF}' | sort | uniq"
|
||||
#else /* !OLDLSOF */
|
||||
/* These use the current (as of 3.62W, at least) parameters for lsof */
|
||||
-#define LSOFCMD "lsof -nPsli TCP | awk '{print $3,$NF}' | sort | uniq"
|
||||
+#define LSOFCMD "lsof -nPsli TCP | awk '{print $3,$(NF - 1)}' | sort | uniq"
|
||||
#endif /* !OLDLSOF */
|
||||
#endif /* LSOFCMD */
|
||||
|
Loading…
Reference in New Issue
Block a user