From 17629f35e0def3898f2c11d8d8546e884164fc1e Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Sun, 15 Oct 2006 23:52:36 +0000 Subject: [PATCH] silly strcmp oops. fix. SVN revision: 26633 --- src/bin/e_fm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index 7bd6aba5d..bc7c442a7 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -3797,7 +3797,7 @@ _e_fm2_cb_scan_idler(void *data) /* skip dotfiles if we're not showing hidden files */ if (dp->d_name[0] == '.' && !sd->show_hidden_files) return 1; /* always hide .order files */ - if (!strcmp(dp->d_name[0], ".order")) return 1; + if (!strcmp(dp->d_name, ".order")) return 1; _e_fm2_file_add(data, dp->d_name, sd->order_file, NULL, 0); } return 1;