opnsense-ports/security/pssh/files/patch-psshlib_psshutil.py
Franco Fichtner b28cb0c870 */*: sync with upstream
Taken from: HardenedBSD
2020-08-10 15:34:55 +02:00

14 lines
406 B
Python

--- psshlib/psshutil.py.orig 2020-04-05 06:12:36 UTC
+++ psshlib/psshutil.py
@@ -28,7 +28,10 @@ def read_host_file(path, host_glob, default_user=None,
Returns a list of (host, port, user) triples.
"""
lines = []
- f = open(path)
+ if path == "-":
+ f = open("/dev/stdin")
+ else:
+ f = open(path)
for line in f:
lines.append(line.strip())
f.close()