Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1666327 > unrolled thread

[PATCH v3 1/6] Fix bad force_token escape sequence

Started byMichael Sartain <mikesart@fastmail.com>
First post2017-06-15 02:30 +0200
Last post2017-06-15 02:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH v3 1/6] Fix bad force_token escape sequence Michael Sartain <mikesart@fastmail.com> - 2017-06-15 02:30 +0200

#1666327 — [PATCH v3 1/6] Fix bad force_token escape sequence

FromMichael Sartain <mikesart@fastmail.com>
Date2017-06-15 02:30 +0200
Subject[PATCH v3 1/6] Fix bad force_token escape sequence
Message-ID<tSqPD-3IL-5@gated-at.bofh.it>
Signed-off-by: Michael Sartain <mikesart@fastmail.com>
---
 event-parse.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/event-parse.c b/event-parse.c
index 3217131..61f48c1 100644
--- a/event-parse.c
+++ b/event-parse.c
@@ -1093,7 +1093,7 @@ static enum event_type __read_token(char **tok)
 		if (strcmp(*tok, "LOCAL_PR_FMT") == 0) {
 			free(*tok);
 			*tok = NULL;
-			return force_token("\"\%s\" ", tok);
+			return force_token("\"%s\" ", tok);
 		} else if (strcmp(*tok, "STA_PR_FMT") == 0) {
 			free(*tok);
 			*tok = NULL;
-- 
2.11.0

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web