summaryrefslogtreecommitdiff
path: root/build-aux/extract-ofp-errors
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2012-03-26 12:39:12 -0700
committerBen Pfaff <blp@nicira.com>2012-03-27 09:16:59 -0700
commite792ba50dd7c6c8344a08ecb8715624a37f0b53f (patch)
treef3c2cfb136e6189d11ce09417b062844f68adbf5 /build-aux/extract-ofp-errors
parent734ec5ec13499a2e7112626564cc9bd0c2d06600 (diff)
downloadopenvswitch-e792ba50dd7c6c8344a08ecb8715624a37f0b53f.tar.gz
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 <blp@nicira.com> Reviewed-by: Simon Horman <horms@verge.net.au>
Diffstat (limited to 'build-aux/extract-ofp-errors')
-rwxr-xr-xbuild-aux/extract-ofp-errors2
1 files changed, 1 insertions, 1 deletions
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_] = {}