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

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