summaryrefslogtreecommitdiff
path: root/options.c
diff options
context:
space:
mode:
Diffstat (limited to 'options.c')
-rw-r--r--options.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/options.c b/options.c
index 82e6d10..18487a8 100644
--- a/options.c
+++ b/options.c
@@ -42,6 +42,7 @@ int poll_rc = 0;
int have_to_show_binding = 0;
int have_to_get_binding = 0;
int have_to_start_as_daemon = 1;
+int detectable_ar = 0;
char *geom = NULL;
@@ -158,6 +159,11 @@ get_options (int argc, char **argv)
{
have_to_start_as_daemon = 0;
}
+ else if (strcmp (argv[i], "-sd") == 0
+ || strcmp (argv[i], "--detectable-ar") == 0)
+ {
+ detectable_ar = 1;
+ }
else
{
show_help ();