Fix over enthusiastic length limit in SUPPORT_8_3_SOURCE_FILESYSTEM block

This commit is contained in:
abs 2009-02-11 20:33:14 +00:00
parent 71735a83f7
commit c0b7d45df7

View File

@ -1,4 +1,4 @@
/* $NetBSD: util.c,v 1.154 2009/02/06 00:24:29 abs Exp $ */
/* $NetBSD: util.c,v 1.155 2009/02/11 20:33:14 abs Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -661,7 +661,7 @@ extract_file(distinfo *dist, int update, int verbose)
* Update path to use dist->name tuncated to the first eight
* characters and check again
*/
(void)snprintf(path, sizeof path, "%s/%.8s%.3s",
(void)snprintf(path, sizeof path, "%s/%.8s%.4s", /* 4 as includes '.' */
ext_dir, dist->name, dist_postfix);
if (!file_exists_p(path)) {
#endif /* SUPPORT_8_3_SOURCE_FILESYSTEM */