$OpenBSD: patch-files_c,v 1.1 2014/02/08 07:41:40 stu Exp $

Fix bad bound.

--- files.c.orig	Sat Feb  8 02:27:54 2014
+++ files.c	Sat Feb  8 02:28:32 2014
@@ -1245,7 +1245,7 @@ FILE *libopen(char *libname, short mode, char *name_re
       /* Try to open the filename with a suffix if it doesn't have one */
 
       if (strrchr(iptr, '.') == NULL) {
-	 strncat(inname, suffix, 249);
+	 strncat(inname, suffix, 149);
          file = fopen(inname, "r");
       }
 
