From cf787cf3a54f21e643d760dc3f893233ecce4ad5 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sun, 4 Feb 2007 17:11:25 +0000 Subject: find: support for ! --- shell/msh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell/msh.c') diff --git a/shell/msh.c b/shell/msh.c index 817b84093..a2da540b3 100644 --- a/shell/msh.c +++ b/shell/msh.c @@ -1278,7 +1278,7 @@ struct op *scantree(struct op *head) DBGPRINTF5(("SCANTREE: checking node %p\n", head)); - if ((head->type != TDOT) && (strcmp(".", head->words[0]) == 0)) { + if ((head->type != TDOT) && LONE_CHAR(head->words[0], '.')) { DBGPRINTF5(("SCANTREE: dot found in node %p\n", head)); return head; } -- cgit v1.2.3