summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--util.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1c7a95d..3a64529 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = git-20130209
+VERSION = git-20130211
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
diff --git a/util.c b/util.c
index 7abded2..c611da4 100644
--- a/util.c
+++ b/util.c
@@ -274,7 +274,7 @@ char* r_readdir(r_dir_t *rdir)
while (true) {
if (rdir->dir != NULL && (dentry = readdir(rdir->dir)) != NULL) {
- if (STREQ(dentry->d_name, ".") || STREQ(dentry->d_name, ".."))
+ if (dentry->d_name[0] == '.')
continue;
len = strlen(rdir->name) + strlen(dentry->d_name) + 2;