aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemi Ferrand <remi.ferrand@cc.in2p3.fr>2014-11-15 11:40:11 +0100
committerTom Yu <tlyu@mit.edu>2015-12-10 17:33:31 -0500
commit48acdfdaf6ad519fe25c8b890c84e1da81ea3fd6 (patch)
treedcb3b0cdf8fb505f82a151bdbd55f4517c215da6
parent04709a3184e01b5ef23605082034cfbd073a9c70 (diff)
downloadkrb5-48acdfdaf6ad519fe25c8b890c84e1da81ea3fd6.zip
krb5-48acdfdaf6ad519fe25c8b890c84e1da81ea3fd6.tar.gz
krb5-48acdfdaf6ad519fe25c8b890c84e1da81ea3fd6.tar.bz2
Remove ksu -D flag documentation
ksu -D does not work in the default build, so we should not document it. Remove any mention of it from the usage message and from ksu.rst. [ghudson@mit.edu: edited commit message; omit change to generated man page] (cherry picked from commit f4e3e096af73254f208d0fc0632db12fc559e1ad) ticket: 8318 (new) version_fixed: 1.12.5 status: resolved
-rw-r--r--doc/user/user_commands/ksu.rst4
-rw-r--r--src/clients/ksu/main.c2
2 files changed, 1 insertions, 5 deletions
diff --git a/doc/user/user_commands/ksu.rst b/doc/user/user_commands/ksu.rst
index 975c898..b2f9121 100644
--- a/doc/user/user_commands/ksu.rst
+++ b/doc/user/user_commands/ksu.rst
@@ -11,7 +11,6 @@ SYNOPSIS
[ **-n** *target_principal_name* ]
[ **-c** *source_cache_name* ]
[ **-k** ]
-[ **-D** ]
[ **-r** time ]
[ **-pf** ]
[ **-l** *lifetime* ]
@@ -229,9 +228,6 @@ OPTIONS
shell or a command (**-e** command). Without **-k**, ksu deletes
the target cache.
-**-D**
- Turn on debug mode.
-
**-z**
Restrict the copy of tickets from the source cache to the target
cache to only the tickets where client == the target principal
diff --git a/src/clients/ksu/main.c b/src/clients/ksu/main.c
index 233eb52..cad816e 100644
--- a/src/clients/ksu/main.c
+++ b/src/clients/ksu/main.c
@@ -60,7 +60,7 @@ char * get_dir_of_file();
void usage (){
fprintf(stderr,
_("Usage: %s [target user] [-n principal] [-c source cachename] "
- "[-k] [-D] [-r time] [-pf] [-l lifetime] [-zZ] [-q] "
+ "[-k] [-r time] [-pf] [-l lifetime] [-zZ] [-q] "
"[-e command [args... ] ] [-a [args... ] ]\n"), prog_name);
}