From: Andrew Deason Date: Thu, 31 Oct 2013 04:28:16 +0000 (-0500) Subject: volserver: Restore -allow-dotted-principals X-Git-Tag: upstream/1.8.0_pre1^2~906 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=90753f9dc77ea5a4ec4e13947e78e3aa63d785f0;p=packages%2Fo%2Fopenafs.git 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 --- 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");