Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
dird: Fix pretty printer to output Yes and No and not yes and no
  • Loading branch information
Marco van Wieringen committed Jan 6, 2016
1 parent 2975943 commit a4884e2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/dird/dird_conf.c
Expand Up @@ -1804,7 +1804,7 @@ bool FILESETRES::print_config(POOL_MEM &buff, bool hide_sensitive_data)
pm_strcat(cfg_str, "\n");
break;
case 'c':
indent_config_item(cfg_str, 3, "CheckFileChanges = yes\n");
indent_config_item(cfg_str, 3, "CheckFileChanges = Yes\n");
break;
case 'd':
switch(*(p + 1)) {
Expand All @@ -1827,19 +1827,19 @@ bool FILESETRES::print_config(POOL_MEM &buff, bool hide_sensitive_data)
}
break;
case 'e':
indent_config_item(cfg_str, 3, "Exclude = yes\n");
indent_config_item(cfg_str, 3, "Exclude = Yes\n");
break;
case 'f':
indent_config_item(cfg_str, 3, "OneFS = no\n");
indent_config_item(cfg_str, 3, "OneFS = No\n");
break;
case 'h': /* no recursion */
indent_config_item(cfg_str, 3, "Recurse = no\n");
indent_config_item(cfg_str, 3, "Recurse = No\n");
break;
case 'H': /* no hard link handling */
indent_config_item(cfg_str, 3, "Hardlinks = no\n");
indent_config_item(cfg_str, 3, "Hardlinks = No\n");
break;
case 'i':
indent_config_item(cfg_str, 3, "IgnoreCase = yes\n");
indent_config_item(cfg_str, 3, "IgnoreCase = Yes\n");
break;
case 'J': /* Base Job */
indent_config_item(cfg_str, 3, "BaseJob = ");
Expand Down

0 comments on commit a4884e2

Please sign in to comment.