From 792a675191f0501979c448cbbd06ae71cf843159 Mon Sep 17 00:00:00 2001 From: Koji Arai Date: Thu, 6 Oct 2016 22:47:33 +0900 Subject: [PATCH] Remove unnecessary comments --- src/lhext.c | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/src/lhext.c b/src/lhext.c index 842b3e0..cf40998 100644 --- a/src/lhext.c +++ b/src/lhext.c @@ -430,13 +430,11 @@ extract_one(afp, hdr) } } - if (skip_flg == TRUE) { /* if skip_flg */ + if (skip_flg == TRUE) { if (stat(name, &stbuf) == 0 && force != TRUE) { - /* if (stbuf.st_mtime >= hdr->unix_last_modified_stamp) {*/ - if (quiet != TRUE) - printf("%s : Skipped...\n", name); - return read_size; - /* } */ + if (quiet != TRUE) + printf("%s : Skipped...\n", name); + return read_size; } } if (noexec) { @@ -517,13 +515,11 @@ extract_one(afp, hdr) } } - if (skip_flg == TRUE) { /* if skip_flg */ + if (skip_flg == TRUE) { if (GETSTAT(name, &stbuf) == 0 && force != TRUE) { - /* if (stbuf.st_mtime >= hdr->unix_last_modified_stamp) { */ - if (quiet != TRUE) - printf("%s : Skipped...\n", name); - return read_size; - /* } */ + if (quiet != TRUE) + printf("%s : Skipped...\n", name); + return read_size; } } -- 2.11.0