Fix order in oidentd file
oident'd parser expects exact order and the man page is written incorrectly.
This commit is contained in:
parent
c8b5165618
commit
95047ba695
@ -91,9 +91,9 @@ class Identification {
|
||||
|
||||
this.connections.forEach((connection) => {
|
||||
file += `to ${connection.socket.remoteAddress}`
|
||||
+ ` lport ${connection.socket.localPort}`
|
||||
+ ` from ${connection.socket.localAddress}`
|
||||
+ ` fport ${connection.socket.remotePort}`
|
||||
+ ` from ${connection.socket.localAddress}`
|
||||
+ ` lport ${connection.socket.localPort}`
|
||||
+ ` { reply "${connection.user}" }\n`;
|
||||
});
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user