Changed -d to --debug

This was done for future daemon implimentation on Windows devices
stable
Justin Reichardt 2021-08-30 11:47:17 -05:00
parent 74c0f189a0
commit 954aa465d4
1 changed files with 1 additions and 1 deletions

View File

@ -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;