]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
removed unneeded defintions.
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 13 Aug 2011 15:57:13 +0000 (17:57 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sat, 13 Aug 2011 15:57:13 +0000 (17:57 +0200)
src/crywrap/crywrap.c
src/crywrap/crywrap.h

index 69afcd2f049c15a37dfd729b1787a2728602e7f0..9c225c7a64424997bdf94cfe10707b39d2f2d6ee 100644 (file)
@@ -129,7 +129,7 @@ static const struct argp_option _crywrap_options[] = {
   {"key", 'k', "FILE", 0, "Server key", 2},
   {"cert", 'c', "FILE", 0, "Server certificate", 2},
   {"ca", 'z', "FILE", 0, "CA certificate", 2},
-  {"anon", 'a', NULL, 0, "Enable anonymous authentication (don't use a certificate)", 2},
+  {"anon", 'a', NULL, 0, "Enable anonymous authentication (no certificates)", 2},
   {"verify", 'v', "LEVEL", OPTION_ARG_OPTIONAL,
    "Verify clients certificate (1: verify if exists, 2: require)", 2},
   {NULL, 0, NULL, 0, "Other options:", 3},
@@ -138,7 +138,7 @@ static const struct argp_option _crywrap_options[] = {
   {"pidfile", 'P', "PATH", 0, "File to log the PID into", 3},
   {"priority", 'p', "STRING", 0, "GnuTLS ciphersuite priority string", 3},
   {"inetd", 'i', NULL, 0, "Enable inetd mode", 3},
-  {"debug", 'D', NULL, 0, "Do not fork", 3},
+  {"debug", 'D', NULL, 0, "Run the server into foreground", 3},
   {0, 0, 0, 0, NULL, 0}
 };
 
index 62b4d7f109d4a0003474483521255828bf34eb36..e246e27a443840159e0d11aaf276f0c4e95887be 100644 (file)
@@ -85,22 +85,7 @@ typedef struct
   int debug;
 } crywrap_config_t;
 
-/** @defgroup options Options.
- * These are the compile-time options.
- * @{
- */
-/** If this option is set, CryWrap will fork into the background.
- */
-#ifndef CRYWRAP_OPTION_FORK
-#define CRYWRAP_OPTION_FORK 1
-#endif
-
-#if CRYWRAP_OPTION_NOFORK
-#undef CRYWRAP_OPTION_FORK
-#endif
-
 /** @} *//* End of the Options group */
 
 #endif /* !_CRYWRAP_H */
 
-/* arch-tag: ebfe1550-0fec-4c0d-8833-23e48292e75d */