delete no-op '-k' option
authorKen Raeburn <raeburn@mit.edu>
Sat, 6 Apr 2002 00:37:20 +0000 (00:37 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sat, 6 Apr 2002 00:37:20 +0000 (00:37 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14366 dc483132-0cff-0310-8789-dd5450dbe970

src/tests/hammer/ChangeLog
src/tests/hammer/kdc5_hammer.c

index 86dff00893ef9b374cb1a486c67b653964e12b5a..59c97f97e3aea3b8b5f50edfee41a80f66d8626f 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-05  Ken Raeburn  <raeburn@mit.edu>
+
+       * kdc5_hammer.c (main): Delete '-k' option which didn't do
+       anything.
+       (usage): Don't display '-k' option.
+
 2001-10-09  Ken Raeburn  <raeburn@mit.edu>
 
        * kdb5_hammer.c: Make prototypes unconditional.
index 4aa750af0a50cf8a9f2e0beb2bdd0a3f57e707e4..d8b47fb824a88e23f0993aca7e414911efc53b3d 100644 (file)
@@ -81,7 +81,7 @@ int status;
     fprintf(stderr,
            "usage: %s -p prefix -n num_to_check [-c cachename] [-r realmname]\n",
            who);
-    fprintf(stderr, "\t [-D depth] [-k enctype]\n");
+    fprintf(stderr, "\t [-D depth]\n");
     fprintf(stderr, "\t [-P preauth type] [-R repeat_count] [-t] [-b] [-v] \n");
 
     exit(status);
@@ -122,7 +122,6 @@ main(argc, argv)
     char ctmp[4096], ctmp2[BUFSIZ], stmp[4096], stmp2[BUFSIZ];
     krb5_principal client_princ;
     krb5_error_code retval;
-    krb5_enctype enctype = DEFAULT_KDC_ENCTYPE;
 
     krb5_init_context(&test_context);
 
@@ -138,7 +137,7 @@ main(argc, argv)
     n_tried = 0;
     errors = 0;
 
-    while ((option = getopt(argc, argv, "D:p:n:c:R:k:P:e:bvr:t")) != -1) {
+    while ((option = getopt(argc, argv, "D:p:n:c:R:P:e:bvr:t")) != -1) {
        switch (option) {
        case 't':
            do_timer = 1;
@@ -165,9 +164,6 @@ main(argc, argv)
        case 'n':                        /* how many to check */
            num_to_check = atoi(optarg);
            break;
-       case 'k':
-           enctype = atoi(optarg);
-           break;
        case 'P':
            patypedata[0] = atoi(optarg);
            patype = patypedata;
@@ -202,12 +198,6 @@ main(argc, argv)
        }           
     }
 
-    if (!valid_enctype(enctype)) {
-      com_err(prog, KRB5_PROG_ETYPE_NOSUPP,
-             "while setting up enctype %d", enctype);
-      exit(1);
-    }
-
     if (ccache == NULL) {
        if ((code = krb5_cc_default(test_context, &ccache))) {
            com_err(prog, code, "while getting default ccache");