Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
diff-no-index: replace manual "."/".." check with is_dot_or_dotdot()
author
Brian Bourn
<ba.bourn@gmail.com>
Wed, 19 Mar 2014 15:58:22 +0000
(11:58 -0400)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 19 Mar 2014 18:49:39 +0000
(11:49 -0700)
Helped-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Brian Bourn <ba.bourn@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff-no-index.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
9daf0ef
)
diff --git
a/diff-no-index.c
b/diff-no-index.c
index 3e4f47e1d8e176e931883a2b32a71b78be754201..c881708ddd9de68878a1375ca80dc5000406aa96 100644
(file)
--- a/
diff-no-index.c
+++ b/
diff-no-index.c
@@
-15,6
+15,7
@@
#include "log-tree.h"
#include "builtin.h"
#include "string-list.h"
+#include "dir.h"
static int read_directory_contents(const char *path, struct string_list *list)
{
@@
-25,7
+26,7
@@
static int read_directory_contents(const char *path, struct string_list *list)
return error("Could not open directory %s", path);
while ((e = readdir(dir)))
- if (
strcmp(".", e->d_name) && strcmp("..",
e->d_name))
+ if (
!is_dot_or_dotdot(
e->d_name))
string_list_insert(list, e->d_name);
closedir(dir);