Re: [patch 6/6] process filtering for fault-injection capabilities[bug fix]

From: Don Mullis
Date: Wed Sep 06 2006 - 12:09:46 EST


Type agreement in sscanf().

Signed-off-by: Don Mullis <dwm@xxxxxxxx>

---
lib/should_fail.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.17/lib/should_fail.c
===================================================================
--- linux-2.6.17.orig/lib/should_fail.c
+++ linux-2.6.17/lib/should_fail.c
@@ -16,7 +16,7 @@ int setup_should_fail(struct should_fail
unsigned long filter;

/* "<probability>,<interval>,<times>,<space>,<process-filter>" */
- if (sscanf(str, "%lu,%lu,%d,%d,%d", &probability, &interval, &times,
+ if (sscanf(str, "%lu,%lu,%d,%d,%lu", &probability, &interval, &times,
&space, &filter) < 5)
return 0;



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/