From e792ba50dd7c6c8344a08ecb8715624a37f0b53f Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 26 Mar 2012 12:39:12 -0700 Subject: [PATCH] extract-ofp-errors: Fix error message. The error message should mention the keyword that caused the error, not some other random keyword from previous iterations. Signed-off-by: Ben Pfaff Reviewed-by: Simon Horman --- build-aux/extract-ofp-errors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-aux/extract-ofp-errors b/build-aux/extract-ofp-errors index 5c3cd26fd..24fddbbfb 100755 --- a/build-aux/extract-ofp-errors +++ b/build-aux/extract-ofp-errors @@ -211,7 +211,7 @@ def extract_ofp_errors(filenames): "NX1.0": ("OF1.0",), "NX1.1": ("OF1.1",)} if targets not in target_map: - fatal("%s: unknown error domain" % target) + fatal("%s: unknown error domain" % targets) for target in target_map[targets]: if type_ not in domain[target]: domain[target][type_] = {} -- 2.20.1