diff mbox

monitor: Ignore "." and ".." when completing file name.

Message ID 20101020090002.59B583E403B@msa101.auone-net.jp
State New
Headers show

Commit Message

Kusanagi Kouichi Oct. 20, 2010, 9 a.m. UTC
Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>
---
 monitor.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

Comments

Luiz Capitulino Oct. 20, 2010, 4:58 p.m. UTC | #1
On Wed, 20 Oct 2010 18:00:01 +0900
Kusanagi Kouichi <slash@ac.auone-net.jp> wrote:

> 
> Signed-off-by: Kusanagi Kouichi <slash@ac.auone-net.jp>

Applied to the Monitor queue, thanks.

> ---
>  monitor.c |    5 +++++
>  1 files changed, 5 insertions(+), 0 deletions(-)
> 
> diff --git a/monitor.c b/monitor.c
> index 260cc02..61607c5 100644
> --- a/monitor.c
> +++ b/monitor.c
> @@ -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))
diff mbox

Patch

diff --git a/monitor.c b/monitor.c
index 260cc02..61607c5 100644
--- a/monitor.c
+++ b/monitor.c
@@ -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))