[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-d1e95bb5309f98368dd4fbef6ff3a8f573b24506@git.kernel.org>
Date: Sun, 24 Oct 2010 09:43:42 GMT
From: tip-bot for Ben Hutchings <ben@...adent.org.uk>
To: linux-tip-commits@...r.kernel.org
Cc: acme@...hat.com, linux-kernel@...r.kernel.org, paulus@...ba.org,
hpa@...or.com, mingo@...hat.com, a.p.zijlstra@...llo.nl,
ben@...adent.org.uk, tglx@...utronix.de, mingo@...e.hu
Subject: [tip:perf/core] perf trace: Fix detection of script extension
Commit-ID: d1e95bb5309f98368dd4fbef6ff3a8f573b24506
Gitweb: http://git.kernel.org/tip/d1e95bb5309f98368dd4fbef6ff3a8f573b24506
Author: Ben Hutchings <ben@...adent.org.uk>
AuthorDate: Sun, 10 Oct 2010 16:11:02 +0100
Committer: Arnaldo Carvalho de Melo <acme@...hat.com>
CommitDate: Sat, 23 Oct 2010 15:31:20 -0200
perf trace: Fix detection of script extension
The extension starts with the last dot in the name, not the first.
Cc: Ingo Molnar <mingo@...e.hu>
Cc: Paul Mackerras <paulus@...ba.org>
Cc: Peter Zijlstra <a.p.zijlstra@...llo.nl>
LKML-Reference: <1286723462.2955.206.camel@...alhost>
Signed-off-by: Ben Hutchings <ben@...adent.org.uk>
Signed-off-by: Arnaldo Carvalho de Melo <acme@...hat.com>
---
tools/perf/builtin-trace.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/perf/builtin-trace.c b/tools/perf/builtin-trace.c
index 3ea6219..deda1a9 100644
--- a/tools/perf/builtin-trace.c
+++ b/tools/perf/builtin-trace.c
@@ -282,7 +282,7 @@ static int parse_scriptname(const struct option *opt __used,
script++;
} else {
script = str;
- ext = strchr(script, '.');
+ ext = strrchr(script, '.');
if (!ext) {
fprintf(stderr, "invalid script extension");
return -1;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists