summaryrefslogtreecommitdiffstats
path: root/xrdp/xrdp.c
diff options
context:
space:
mode:
authorJay Sorg <jay.sorg@gmail.com>2018-05-23 22:09:45 -0700
committerjsorg71 <jay.sorg@gmail.com>2018-05-25 22:17:31 -0700
commit349616a35d10eb0821b4784198cc196cf86b8a94 (patch)
treee354f352f1fdc5d497aa10b02493ffa327804938 /xrdp/xrdp.c
parenta1576ccbf736fa862885719856e77e9ceafb266a (diff)
downloadxrdp-proprietary-349616a35d10eb0821b4784198cc196cf86b8a94.tar.gz
xrdp-proprietary-349616a35d10eb0821b4784198cc196cf86b8a94.zip
add ipv6only to configure echo and add configure parameter to xrdp -h output
Diffstat (limited to 'xrdp/xrdp.c')
-rw-r--r--xrdp/xrdp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/xrdp/xrdp.c b/xrdp/xrdp.c
index b17a39f0..a5293896 100644
--- a/xrdp/xrdp.c
+++ b/xrdp/xrdp.c
@@ -24,6 +24,7 @@
#include "xrdp.h"
#include "log.h"
+#include "configure_params.h"
#if !defined(PACKAGE_VERSION)
#define PACKAGE_VERSION "???"
@@ -62,6 +63,10 @@ print_version(void)
void
print_help(void)
{
+#if defined(CONFIGURE_STRING)
+ g_writeln("xrdp configure command line parameters [%s]", CONFIGURE_STRING);
+ g_writeln("%s", "");
+#endif
g_writeln("Usage: xrdp [options]");
g_writeln(" -h, --help show help");
g_writeln(" -n, --nodaemon don't fork into background");