Blame SOURCES/0048-RH-print-defaults.patch

f20720
---
f20720
 libmultipath/dict.c |    4 ----
f20720
 1 file changed, 4 deletions(-)
f20720
f20720
Index: multipath-tools-130222/libmultipath/dict.c
f20720
===================================================================
f20720
--- multipath-tools-130222.orig/libmultipath/dict.c
f20720
+++ multipath-tools-130222/libmultipath/dict.c
f20720
@@ -2468,16 +2468,12 @@ snprint_def_verbosity (char * buff, int
f20720
 static int
f20720
 snprint_def_max_polling_interval (char * buff, int len, void * data)
f20720
 {
f20720
-	if (conf->max_checkint == MAX_CHECKINT(conf->checkint))
f20720
-		return 0;
f20720
 	return snprintf(buff, len, "%i", conf->max_checkint);
f20720
 }
f20720
 
f20720
 static int
f20720
 snprint_reassign_maps (char * buff, int len, void * data)
f20720
 {
f20720
-	if (conf->reassign_maps == DEFAULT_REASSIGN_MAPS)
f20720
-		return 0;
f20720
 	return snprintf(buff, len, "\"%s\"",
f20720
 			conf->reassign_maps?"yes":"no");
f20720
 }