From 26b45cf15f4390da6e8b7beb6993efd9c8256f7c Mon Sep 17 00:00:00 2001 From: Stefan Esser Date: Wed, 1 Dec 2004 23:47:54 +0000 Subject: [PATCH] Fixed missing opening bracket --- TSRM/tsrm_virtual_cwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index 26104f262f..a0b622c03e 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -309,7 +309,7 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func * This can happen under solaris when a dir does not have read permissions * but *does* have execute permissions */ if (IS_ABSOLUTE_PATH(path, path_length) || (state->cwd_length < 1)) { - if (use_realpath) + if (use_realpath) { if (realpath(path, resolved_path)) { path = resolved_path; path_length = strlen(path); -- 2.50.1