Patch to use xfopen from Jeff Garzik
diff --git a/util-linux/more.c b/util-linux/more.c
index f8b17b3..b89143e 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -91,7 +91,7 @@
 #ifdef BB_FEATURE_USE_TERMIOS
 		cin = fopen("/dev/tty", "r");
 		if (!cin)
-			cin = fopen("/dev/console", "r");
+			cin = xfopen("/dev/console", "r");
 		getTermSettings(fileno(cin), &initial_settings);
 		new_settings = initial_settings;
 		new_settings.c_cc[VMIN] = 1;