From: brain Date: Sat, 21 Jul 2007 13:01:12 +0000 (+0000) Subject: Why does getcache return "true" or undef?! Now returns 1 or 0. Thanks stskeeps X-Git-Tag: v2.0.23~4943 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=d6c34d9250153470367b74abcf42ad4db12fc217;p=user%2Fhenk%2Fcode%2Finspircd.git Why does getcache return "true" or undef?! Now returns 1 or 0. Thanks stskeeps git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7482 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/configure b/configure index db6602bae..67e5b7aab 100755 --- a/configure +++ b/configure @@ -397,7 +397,7 @@ sub svnupdate print "Running non-interactive configure...\n" unless $interactive; print "Checking for cache from previous configure... "; -print ((getcache() eq "true") ? "found\n" : "not found\n"); +print ((!getcache()) ? "not found\n" : "found\n"); print "Checking operating system version... "; print getosflags() . "\n"; @@ -840,7 +840,7 @@ FOO2 ################################################################################ sub getcache { # Retrieves the .config.cache file, and loads values into the main config hash. - open(CACHE, ".config.cache") or return undef; + open(CACHE, ".config.cache") or return 0; while () { chomp; # Ignore Blank lines, and comments.. @@ -852,7 +852,7 @@ sub getcache { $config{$key} = $1; } close(CONFIG); - return "true"; + return 1; } sub makecache {