From: nasm-bot f. H. P. A. <hp...@li...> - 2016-01-27 22:33:17
|
Commit-ID: 064af69d627f26970b5763dbf984ce7ecd5fe4ea Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=064af69d627f26970b5763dbf984ce7ecd5fe4ea Author: H. Peter Anvin <hp...@li...> AuthorDate: Wed, 27 Jan 2016 14:28:32 -0800 Committer: H. Peter Anvin <hp...@li...> CommitDate: Wed, 27 Jan 2016 14:28:32 -0800 realpath.c: remove testing #ifdef unintentionally left in Remove the #if 0 for canonicalize_file_name(). This was added to test the realpath() code, and inadvertently left in. Signed-off-by: H. Peter Anvin <hp...@li...> --- realpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realpath.c b/realpath.c index a1c2101..82adfc9 100644 --- a/realpath.c +++ b/realpath.c @@ -49,7 +49,7 @@ #include "nasmlib.h" -#if 0 /* def HAVE_CANONICALIZE_FILE_NAME */ +#ifdef HAVE_CANONICALIZE_FILE_NAME /* * GNU-specific, but avoids the realpath(..., NULL) |