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

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