--- ssh-1.2.27/Makefile.in~ Wed May 12 13:19:31 1999 +++ ssh-1.2.27/Makefile.in Sat Aug 26 15:49:17 2000 @@ -415,7 +415,7 @@ sshd: $(SSHD_OBJS) $(GMPDEP) $(RSAREFDEP) $(ZLIBDEP) -rm -f sshd - $(CC) $(LDFLAGS) -o sshd $(SSHD_OBJS) \ + $(CC) $(LDFLAGS) -o sshd -lvirtual $(SSHD_OBJS) \ $(GMPLIBS) $(ZLIBLIBS) $(WRAPLIBS) $(LIBS) $(KERBEROS_LIBS) ssh: $(SSH_OBJS) $(GMPDEP) $(RSAREFDEP) $(ZLIBDEP) --- ssh-1.2.27/sshd.c.old Sat Aug 26 14:45:47 2000 +++ ssh-1.2.27/sshd.c Sat Aug 26 14:49:23 2000 @@ -846,7 +846,8 @@ /* Read server configuration options from the configuration file. */ read_server_config(&options, config_file_name); - + virtual_readconfig(); + /* Fill in default values for those options not explicitly set. */ fill_default_server_options(&options); @@ -1266,6 +1267,8 @@ log_msg("Connection from %.100s port %d", get_remote_ipaddr(), get_remote_port()); + virtual_doit(sock_in); + /* Check whether logins are denied from this host. */ { const char *hostname = get_canonical_hostname();