[PATCH ocserv 2/5] Improve ocpasswd short description, re-run autogen

Mike Miller mtmiller at ieee.org
Sun Jul 21 00:15:33 EDT 2013


---
 src/ocpasswd-args.c   | 34 +++++++++++++++++-----------------
 src/ocpasswd-args.def |  2 +-
 src/ocpasswd-args.h   |  6 +++---
 3 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/ocpasswd-args.c b/src/ocpasswd-args.c
index 877ba31..fd273cb 100644
--- a/src/ocpasswd-args.c
+++ b/src/ocpasswd-args.c
@@ -2,7 +2,7 @@
  *
  *  DO NOT EDIT THIS FILE   (ocpasswd-args.c)
  *
- *  It has been AutoGen-ed  April 28, 2013 at 03:35:54 PM by AutoGen 5.17.3
+ *  It has been AutoGen-ed  July 20, 2013 at 04:39:38 PM by AutoGen 5.17.3
  *  From the definitions    ocpasswd-args.def
  *  and the template file   options
  *
@@ -62,8 +62,8 @@ extern FILE * option_usage_fp;
 /**
  *  static const strings for ocpasswd options
  */
-static char const ocpasswd_opt_strs[1456] =
-/*     0 */ "ocpasswd 0.1.1\n"
+static char const ocpasswd_opt_strs[1483] =
+/*     0 */ "ocpasswd 0.1.5\n"
             "Copyright (C) 2013 Nikos Mavrogiannopoulos, all rights reserved.\n"
             "This is free software. It is licensed for use, modification and\n"
             "redistribution under the terms of the GNU General Public License,\n"
@@ -96,14 +96,14 @@ static char const ocpasswd_opt_strs[1456] =
 /*  1031 */ "output version information and exit\0"
 /*  1067 */ "version\0"
 /*  1075 */ "OCPASSWD\0"
-/*  1084 */ "ocpasswd - ocpasswd\n"
+/*  1084 */ "ocpasswd - OpenConnect server password utility\n"
             "Usage:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [username]\n\0"
-/*  1173 */ "openconnect-devel at lists.infradead.org\0"
-/*  1211 */ "\n\0"
-/*  1213 */ "This program is openconnect password (ocpasswd) utility.  It allows the\n"
+/*  1200 */ "openconnect-devel at lists.infradead.org\0"
+/*  1238 */ "\n\0"
+/*  1240 */ "This program is openconnect password (ocpasswd) utility.  It allows the\n"
             "generation and handling of a 'plain' password file used by ocserv.\n\0"
-/*  1353 */ "ocpasswd 0.1.1\0"
-/*  1368 */ "Usage: ocpasswd -c [passwd] [options] username\n"
+/*  1380 */ "ocpasswd 0.1.5\0"
+/*  1395 */ "Usage: ocpasswd -c [passwd] [options] username\n"
             "ocpasswd --help for usage instructions.\n";
 
 /**
@@ -295,13 +295,13 @@ static tOptDesc optDesc[OPTION_CT] = {
 /** There are no directories to search for ocpasswd config files. */
 #define apzHomeList     NULL
 /** The ocpasswd program bug email address. */
-#define zBugsAddr       (ocpasswd_opt_strs+1173)
+#define zBugsAddr       (ocpasswd_opt_strs+1200)
 /** Clarification/explanation of what ocpasswd does. */
-#define zExplain        (ocpasswd_opt_strs+1211)
+#define zExplain        (ocpasswd_opt_strs+1238)
 /** Extra detail explaining what ocpasswd does. */
-#define zDetail         (ocpasswd_opt_strs+1213)
+#define zDetail         (ocpasswd_opt_strs+1240)
 /** The full version string for ocpasswd. */
-#define zFullVersion    (ocpasswd_opt_strs+1353)
+#define zFullVersion    (ocpasswd_opt_strs+1380)
 /* extracted from optcode.tlib near line 371 */
 
 #if defined(ENABLE_NLS)
@@ -313,7 +313,7 @@ static tOptDesc optDesc[OPTION_CT] = {
 #endif /* ENABLE_NLS */
 
 #define ocpasswd_full_usage (NULL)
-#define ocpasswd_short_usage (ocpasswd_opt_strs+1368)
+#define ocpasswd_short_usage (ocpasswd_opt_strs+1395)
 
 #endif /* not defined __doxygen__ */
 
@@ -558,7 +558,7 @@ static void bogus_function(void) {
      translate option names.
    */
   /* referenced via ocpasswdOptions.pzCopyright */
-  puts(_("ocpasswd 0.1.1\n\
+  puts(_("ocpasswd 0.1.5\n\
 Copyright (C) 2013 Nikos Mavrogiannopoulos, all rights reserved.\n\
 This is free software. It is licensed for use, modification and\n\
 redistribution under the terms of the GNU General Public License,\n\
@@ -597,7 +597,7 @@ details.\n\n"));
   puts(_("output version information and exit"));
 
   /* referenced via ocpasswdOptions.pzUsageTitle */
-  puts(_("ocpasswd - ocpasswd\n\
+  puts(_("ocpasswd - OpenConnect server password utility\n\
 Usage:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [username]\n"));
 
   /* referenced via ocpasswdOptions.pzExplain */
@@ -608,7 +608,7 @@ Usage:  %s [ -<flag> [<val>] | --<name>[{=| }<val>] ]... [username]\n"));
 generation and handling of a 'plain' password file used by ocserv.\n"));
 
   /* referenced via ocpasswdOptions.pzFullVersion */
-  puts(_("ocpasswd 0.1.1"));
+  puts(_("ocpasswd 0.1.5"));
 
   /* referenced via ocpasswdOptions.pzFullUsage */
   puts(_("<<<NOT-FOUND>>>"));
diff --git a/src/ocpasswd-args.def b/src/ocpasswd-args.def
index 7c751bb..877726c 100644
--- a/src/ocpasswd-args.def
+++ b/src/ocpasswd-args.def
@@ -1,6 +1,6 @@
 AutoGen Definitions options;
 prog-name     = ocpasswd;
-prog-title    = "ocpasswd";
+prog-title    = "OpenConnect server password utility";
 prog-desc     = "OpenConnect VPN server plain password file handling program.";
 disable-save;
 no-xlate = opt;
diff --git a/src/ocpasswd-args.h b/src/ocpasswd-args.h
index 73900b4..1f198df 100644
--- a/src/ocpasswd-args.h
+++ b/src/ocpasswd-args.h
@@ -2,7 +2,7 @@
  *
  *  DO NOT EDIT THIS FILE   (ocpasswd-args.h)
  *
- *  It has been AutoGen-ed  April 28, 2013 at 03:35:54 PM by AutoGen 5.17.3
+ *  It has been AutoGen-ed  July 20, 2013 at 04:39:38 PM by AutoGen 5.17.3
  *  From the definitions    ocpasswd-args.def
  *  and the template file   options
  *
@@ -77,9 +77,9 @@ typedef enum {
 /** count of all options for ocpasswd */
 #define OPTION_CT    7
 /** ocpasswd version */
-#define OCPASSWD_VERSION       "0.1.1"
+#define OCPASSWD_VERSION       "0.1.5"
 /** Full ocpasswd version text */
-#define OCPASSWD_FULL_VERSION  "ocpasswd 0.1.1"
+#define OCPASSWD_FULL_VERSION  "ocpasswd 0.1.5"
 
 /**
  *  Interface defines for all options.  Replace "n" with the UPPER_CASED
-- 
1.8.3.2



More information about the openconnect-devel mailing list