svn commit: r314304 - head/crypto/openssh

Dag-Erling Smørgrav des at FreeBSD.org
Sun Feb 26 16:35:00 UTC 2017


Author: des
Date: Sun Feb 26 16:34:58 2017
New Revision: 314304
URL: https://svnweb.freebsd.org/changeset/base/314304

Log:
  Fix amusingly harmless mis-merge.

Modified:
  head/crypto/openssh/readconf.c

Modified: head/crypto/openssh/readconf.c
==============================================================================
--- head/crypto/openssh/readconf.c	Sun Feb 26 16:00:20 2017	(r314303)
+++ head/crypto/openssh/readconf.c	Sun Feb 26 16:34:58 2017	(r314304)
@@ -319,7 +319,6 @@ add_local_forward(Options *options, cons
 #else
 	ipport_reserved = IPPORT_RESERVED;
 #endif
-	if (newfwd->listen_port < ipport_reserved && original_real_uid != 0)
 	if (newfwd->listen_port < ipport_reserved && original_real_uid != 0 &&
 	    newfwd->listen_path == NULL)
 		fatal("Privileged ports can only be forwarded by root.");


More information about the svn-src-head mailing list