Diff between 050cead360676d35a28e17ab0c70a08d816def72 and f688edd8e1cab760e7b352181fed927869784a67

Changed Files

File Additions Deletions Status
tools/mesh/mesh-db.c +2 -2 modified

Full Patch

diff --git a/tools/mesh/mesh-db.c b/tools/mesh/mesh-db.c
index 1a1ba38..fa11837 100644
--- a/tools/mesh/mesh-db.c
+++ b/tools/mesh/mesh-db.c
@@ -2007,7 +2007,7 @@ bool mesh_db_get_addr_range(uint16_t *low, uint16_t *high)
 	if (!cfg || !cfg->jcfg)
 		return false;
 
-	jarray = json_object_object_get(cfg->jcfg, "provisioniers");
+	jarray = json_object_object_get(cfg->jcfg, "provisioners");
 
 	if (!jarray || json_object_get_type(jarray) != json_type_array)
 		return false;
@@ -2041,7 +2041,7 @@ bool mesh_db_get_addr_range(uint16_t *low, uint16_t *high)
 }
 
 /*
- * This is a simplistic implementation onf allocated range, where
+ * This is a simplistic implementation of allocated range, where
  * the range is one contiguous chunk of the address space.
  */
 static bool add_range(json_object *jobj, const char *keyword, uint16_t low,