From: Ben Pfaff Date: Mon, 26 Mar 2012 19:39:12 +0000 (-0700) Subject: extract-ofp-errors: Fix error message. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e792ba50dd7c6c8344a08ecb8715624a37f0b53f;p=openvswitch 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 --- diff --git a/build-aux/extract-ofp-errors b/build-aux/extract-ofp-errors index 5c3cd26f..24fddbbf 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_] = {}