From: Joel Rosdahl Date: Mon, 5 Mar 2012 20:32:02 +0000 (+0100) Subject: Fix typo X-Git-Tag: v3.2~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4bb419c8703b4ec7629e1f2d05720b42aa353066;p=thirdparty%2Fccache.git Fix typo --- diff --git a/execute.c b/execute.c index f19b090a6..17278ee08 100644 --- a/execute.c +++ b/execute.c @@ -100,7 +100,7 @@ win32getshell(char *path) ext = get_extension(path); if (ext && strcasecmp(ext, ".sh") == 0 && (path_env = getenv("PATH"))) sh = find_executable_in_path("sh.exe", NULL, path_env); - if (!sh && gevenv("CCACHE_DETECT_SHEBANG")) { + if (!sh && getenv("CCACHE_DETECT_SHEBANG")) { /* Detect shebang. */ FILE *fp; fp = fopen(path, "r");