summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Lewman <andrew@torproject.org>2006-10-08 18:24:31 +0000
committerAndrew Lewman <andrew@torproject.org>2006-10-08 18:24:31 +0000
commit563be121c21ec97ca122db1c67af64e262fbcf4b (patch)
tree31a43f75aa2dc9343222f6c33a45e747187ae51b
parentf0d7a6716ff95787b61389d0eb3827d7d131def9 (diff)
downloadtor-563be121c21ec97ca122db1c67af64e262fbcf4b.tar.gz
tor-563be121c21ec97ca122db1c67af64e262fbcf4b.zip
Add missing return so this builds on mingw.
svn:r8649
-rw-r--r--src/common/util.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/util.c b/src/common/util.c
index fe1daa359a..50211917b3 100644
--- a/src/common/util.c
+++ b/src/common/util.c
@@ -1545,6 +1545,7 @@ path_is_relative(const char *filename)
return 0;
else if (filename && strlen(filename)>3 && TOR_ISALPHA(filename[0]) &&
filename[1] == ':' && filename[2] == '\\')
+ return 0;
#endif
else
return 1;