aboutsummaryrefslogtreecommitdiff
path: root/ovsdb
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-05-31 11:30:16 -0700
committerBen Pfaff <blp@nicira.com>2011-05-31 13:45:59 -0700
commitb20ae4b33368497bfd674873508dd8a2941077f1 (patch)
tree9d51ff2ff84859a5077bf75db59387b81ca8b161 /ovsdb
parentdf2fa9b50e1c0e93c6be1d31a5d69eb4f077add3 (diff)
ovsdb: Fix spelling of "constraint violation" in error tag.
Diffstat (limited to 'ovsdb')
-rw-r--r--ovsdb/mutation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ovsdb/mutation.c b/ovsdb/mutation.c
index 9f09d594..7ae83fee 100644
--- a/ovsdb/mutation.c
+++ b/ovsdb/mutation.c
@@ -1,4 +1,4 @@
-/* Copyright (c) 2009, 2010 Nicira Networks
+/* Copyright (c) 2009, 2010, 2011 Nicira Networks
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -327,7 +327,7 @@ ovsdb_mutation_check_count(struct ovsdb_datum *dst,
if (!ovsdb_datum_conforms_to_type(dst, dst_type)) {
char *s = ovsdb_type_to_english(dst_type);
struct ovsdb_error *e = ovsdb_error(
- "constaint violation",
+ "constraint violation",
"Attempted to store %u elements in %s.", dst->n, s);
free(s);
return e;