summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBarry Jaspan <bjaspan@mit.edu>1990-07-03 19:18:48 +0000
committerBarry Jaspan <bjaspan@mit.edu>1990-07-03 19:18:48 +0000
commit4127ee87951f3efcf663f447c3f6bf3e3ad37647 (patch)
tree7f46f4643790da3e55759cf2543dc6209c4c0eb1 /src
parent71cad6c918ca8f959152d2a2693a0273384e1010 (diff)
downloadkrb5-4127ee87951f3efcf663f447c3f6bf3e3ad37647.tar.gz
krb5-4127ee87951f3efcf663f447c3f6bf3e3ad37647.tar.xz
krb5-4127ee87951f3efcf663f447c3f6bf3e3ad37647.zip
What a waste of three revisions.. :-)
bjaspan: Removed the -u option entirely, since it isn't needed. <sigh> git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1040 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/clients/kinit/kinit.c5
1 files changed, 1 insertions, 4 deletions
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;