diff options
author | Kusanagi Kouichi <slash@ac.auone-net.jp> | 2010-10-20 18:00:01 +0900 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2010-10-22 10:08:38 -0200 |
commit | 46c7fc182d990a373d6a9197a69ff05bba902005 (patch) | |
tree | 9fb115653fc9d7d92c1af25fbc46a933dc2e6b51 /monitor.c | |
parent | 945d3e6378fc639925370c62cb5e3d32b8f297c3 (diff) |
monitor: Ignore "." and ".." when completing file name.
Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -3976,6 +3976,11 @@ static void file_completion(const char *input) d = readdir(ffs); if (!d) break; + + if (strcmp(d->d_name, ".") == 0 || strcmp(d->d_name, "..") == 0) { + continue; + } + if (strstart(d->d_name, file_prefix, NULL)) { memcpy(file, input, input_path_len); if (input_path_len < sizeof(file)) |