summaryrefslogtreecommitdiff
path: root/debian/patches/console_ignore_bdf_err.patch
blob: ac6e6a53d1fb62c6d20f3c0de66cab17883a60de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
reduce-font overestimates the number of characters in the font. This should be
fixed there, not here.

diff --git a/console-client/bdf.c b/console-client/bdf.c
index 30501f4..ee8aa30 100644
--- a/console-client/bdf.c
+++ b/console-client/bdf.c
@@ -415,8 +415,10 @@ bdf_read (FILE *filep, bdf_font_t *font, int *linecount)
 	     glyphs.  */
 	  if (!strcmp (line, "ENDFONT"))
 	    {
+	      /*
 	      if (parser.glyphs != bdf->glyphs_count)
 		err = BDF_COUNT_MISMATCH;
+	      */
 	      done = 1;
 	    }
 	  else