From 954aa465d4f836514c4acaec95e925503172339c Mon Sep 17 00:00:00 2001 From: Justin Reichardt Date: Mon, 30 Aug 2021 11:47:17 -0500 Subject: [PATCH] Changed -d to --debug This was done for future daemon implimentation on Windows devices --- src/rhosts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rhosts.c b/src/rhosts.c index 94259ad..e6d29fa 100644 --- a/src/rhosts.c +++ b/src/rhosts.c @@ -256,7 +256,7 @@ int copy_tmp_to_hosts(){ int consume_args(struct config *config, int argc, char **argv){ int i=0; for (i=1;i < argc;i++){ - if (strcmp(argv[i], "-d") == 0) + if (strcmp(argv[i], "--debug") == 0) config->loglevel = CLOGS_DEBUG; } return 0;