Deleted Added
full compact
readconf.c (61203) readconf.c (62940)
1/*
2 *
3 * readconf.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Sat Apr 22 00:03:10 1995 ylo
11 *
12 * Functions for reading the configuration files.
13 *
1/*
2 *
3 * readconf.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved
9 *
10 * Created: Sat Apr 22 00:03:10 1995 ylo
11 *
12 * Functions for reading the configuration files.
13 *
14 * $FreeBSD: head/crypto/openssh/readconf.c 61203 2000-06-03 07:31:44Z kris $
14 * $FreeBSD: head/crypto/openssh/readconf.c 62940 2000-07-11 09:39:34Z peter $
15 */
16
17#include "includes.h"
18RCSID("$Id: readconf.c,v 1.33 2000/05/29 20:20:46 markus Exp $");
19
20#include "ssh.h"
21#include "cipher.h"
22#include "readconf.h"

--- 727 unchanged lines hidden (view full) ---

750 if (options->afs_token_passing == -1)
751 options->afs_token_passing = 1;
752#endif /* AFS */
753 if (options->password_authentication == -1)
754 options->password_authentication = 1;
755 if (options->rhosts_rsa_authentication == -1)
756 options->rhosts_rsa_authentication = 1;
757 if (options->fallback_to_rsh == -1)
15 */
16
17#include "includes.h"
18RCSID("$Id: readconf.c,v 1.33 2000/05/29 20:20:46 markus Exp $");
19
20#include "ssh.h"
21#include "cipher.h"
22#include "readconf.h"

--- 727 unchanged lines hidden (view full) ---

750 if (options->afs_token_passing == -1)
751 options->afs_token_passing = 1;
752#endif /* AFS */
753 if (options->password_authentication == -1)
754 options->password_authentication = 1;
755 if (options->rhosts_rsa_authentication == -1)
756 options->rhosts_rsa_authentication = 1;
757 if (options->fallback_to_rsh == -1)
758 options->fallback_to_rsh = 1;
758 options->fallback_to_rsh = 0;
759 if (options->use_rsh == -1)
760 options->use_rsh = 0;
761 if (options->batch_mode == -1)
762 options->batch_mode = 0;
763 if (options->check_host_ip == -1)
764 options->check_host_ip = 0;
765 if (options->strict_host_key_checking == -1)
766 options->strict_host_key_checking = 2; /* 2 is default */

--- 46 unchanged lines hidden ---
759 if (options->use_rsh == -1)
760 options->use_rsh = 0;
761 if (options->batch_mode == -1)
762 options->batch_mode = 0;
763 if (options->check_host_ip == -1)
764 options->check_host_ip = 0;
765 if (options->strict_host_key_checking == -1)
766 options->strict_host_key_checking = 2; /* 2 is default */

--- 46 unchanged lines hidden ---