Courtesy of gcc warnings:
Index: adm_crawler.c
===================================================================
RCS file: /cvs/subversion/subversion/libsvn_wc/adm_crawler.c,v
retrieving revision 1.4
diff -u -p -r1.4 adm_crawler.c
--- adm_crawler.c 2000/09/09 02:02:31 1.4
+++ adm_crawler.c 2000/09/10 16:20:34
@@ -97,7 +97,7 @@ get_next_child_subdir (svn_string_t **na
do {
/* Read the next entry from dirhandle, get its name and type, too. */
status = apr_readdir (dirhandle);
- if (status = APR_ENOENT) /* no more entries */
+ if (status == APR_ENOENT) /* no more entries */
{
*name = NULL;
return SVN_NO_ERROR;
Received on Sat Oct 21 14:36:08 2006