From: Barry Jaspan Date: Tue, 3 Jul 1990 19:18:48 +0000 (+0000) Subject: What a waste of three revisions.. :-) X-Git-Tag: krb5-1.0-alpha2~371 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4127ee87951f3efcf663f447c3f6bf3e3ad37647;p=krb5.git What a waste of three revisions.. :-) bjaspan: Removed the -u option entirely, since it isn't needed. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1040 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/clients/kinit/kinit.c b/src/clients/kinit/kinit.c index 1414f7387..90288d344 100644 --- a/src/clients/kinit/kinit.c +++ b/src/clients/kinit/kinit.c @@ -69,14 +69,11 @@ main(argc, argv) if (rindex(argv[0], '/')) argv[0] = rindex(argv[0], '/')+1; - while ((option = getopt(argc, argv, "rpul:c:")) != EOF) { + while ((option = getopt(argc, argv, "rpl:c:")) != EOF) { switch (option) { case 'r': options |= KDC_OPT_RENEWABLE; break; - case 'u': - options |= KDC_OPT_ENC_TKT_IN_SKEY; - break; case 'p': options |= KDC_OPT_PROXIABLE; break;