(main): redo the v4/v5 selection for consistency.

-4 -> try only v4
-5 -> try only v5
none, -45 -> try v5, v4


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@7297 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1999-11-02 22:45:10 +00:00
parent 272e2c7053
commit ac5267f34c
4 changed files with 30 additions and 30 deletions

View File

@@ -711,9 +711,9 @@ doit (const char *hostname,
}
#ifdef KRB4
static int use_v4 = 0;
static int use_v4 = -1;
#endif
static int use_v5 = 0;
static int use_v5 = -1;
static int use_only_broken = 0;
static int use_broken = 1;
static char *port_str;
@@ -825,11 +825,12 @@ main(int argc, char **argv)
if (do_forwardable)
do_forward = 1;
/* default to v5 */
#ifdef KRB4
if(use_v4 == 0 && use_v5 == 0)
#endif
use_v5 = 1;
#if defined(KRB4) && defined(KRB5)
if(use_v4 == -1 && use_v5 == 1)
use_v4 = 0;
if(use_v5 == -1 && use_v4 == 1)
use_v5 = 0;
#endif
if (use_only_broken) {
#ifdef KRB4