krb5 commit [krb5-1.12]: Fix kpropd -x
Tom Yu
tlyu at MIT.EDU
Thu Jun 26 16:36:06 EDT 2014
https://github.com/krb5/krb5/commit/57f106a68ed91d2930faadb7667cdfaa074c07c3
commit 57f106a68ed91d2930faadb7667cdfaa074c07c3
Author: Greg Hudson <ghudson at mit.edu>
Date: Sun Jan 26 18:38:11 2014 -0500
Fix kpropd -x
A missing break in the switch statement caused kpropd -x to error out
with a usage message.
(cherry picked from commit 75b2ec88c4d75e7215322d2f0019307310cc9701)
ticket: 7854
version_fixed: 1.12.2
status: resolved
src/slave/kpropd.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/slave/kpropd.c b/src/slave/kpropd.c
index b75be63..7f0a308 100644
--- a/src/slave/kpropd.c
+++ b/src/slave/kpropd.c
@@ -1196,6 +1196,7 @@ void PRS(argv)
usage();
db_args[db_args_size+1] = NULL;
db_args_size++;
+ break;
}
default:
More information about the cvs-krb5
mailing list