Merge pull request #2273 from thelounge/xpaw/oidentd-order

Fix order in oidentd file
This commit is contained in:
Pavel Djundik 2018-03-22 18:30:49 +02:00 committed by GitHub
commit 819f6c5ad2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`;
});