From: Ben Pfaff Date: Tue, 31 May 2011 18:30:16 +0000 (-0700) Subject: ovsdb: Fix spelling of "constraint violation" in error tag. X-Git-Tag: v1.1.2~32 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=0066b6033e84752dff92b4ac991e8da662c5061f ovsdb: Fix spelling of "constraint violation" in error tag. --- diff --git a/ovsdb/mutation.c b/ovsdb/mutation.c index 9f09d5941..7ae83feef 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;