From a4884e20bc000b7fd65764138215a6d57fa3ed3c Mon Sep 17 00:00:00 2001 From: Marco van Wieringen Date: Wed, 6 Jan 2016 15:13:15 +0100 Subject: [PATCH] dird: Fix pretty printer to output Yes and No and not yes and no --- src/dird/dird_conf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/dird/dird_conf.c b/src/dird/dird_conf.c index 16175106ee3..d06657e5449 100644 --- a/src/dird/dird_conf.c +++ b/src/dird/dird_conf.c @@ -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)) { @@ -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 = ");