From 90753f9dc77ea5a4ec4e13947e78e3aa63d785f0 Mon Sep 17 00:00:00 2001 From: Andrew Deason Date: Wed, 30 Oct 2013 23:28:16 -0500 Subject: [PATCH] volserver: Restore -allow-dotted-principals Commit cd3492d0 converted volserver command-line parsing to use libcmd. However, it accidentally also changed the -allow-dotted-principals option to -dotted. Change it back to -allow-dotted-principals for consistency with previous versions, as well as other server processes. Note that currently there are no public releases of OpenAFS containing cd3492d0, so no public release has contained the -dotted option. Change-Id: Ied07f0eb867a13591656daae00bc9e85a2c7f6c8 Reviewed-on: http://gerrit.openafs.org/10423 Reviewed-by: Marc Dionne Reviewed-by: Derrick Brashear Tested-by: BuildBot --- src/volser/volmain.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/volser/volmain.c b/src/volser/volmain.c index 3b7dfc614..05e358c46 100644 --- a/src/volser/volmain.c +++ b/src/volser/volmain.c @@ -292,7 +292,7 @@ ParseArgs(int argc, char **argv) { "log vos users"); cmd_AddParmAtOffset(opts, OPT_rxbind, "-rxbind", CMD_FLAG, CMD_OPTIONAL, "bind only to the primary interface"); - cmd_AddParmAtOffset(opts, OPT_dotted, "-dotted", CMD_FLAG, CMD_OPTIONAL, + cmd_AddParmAtOffset(opts, OPT_dotted, "-allow-dotted-principals", CMD_FLAG, CMD_OPTIONAL, "permit Kerberos 5 principals with dots"); cmd_AddParmAtOffset(opts, OPT_debug, "-d", CMD_SINGLE, CMD_OPTIONAL, "debug level"); -- 2.39.5