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

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