Module Name: src
Committed By: pgoyette
Date: Tue Jun 28 05:21:15 UTC 2016
Modified Files:
src/common/lib/libprop: prop_dictionary.c prop_number.c
Log Message:
Missed a couple of function-call renames in previous
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/common/lib/libprop/prop_dictionary.c
cvs rdiff -u -r1.28 -r1.29 src/common/lib/libprop/prop_number.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/common/lib/libprop/prop_dictionary.c
diff -u src/common/lib/libprop/prop_dictionary.c:1.40 src/common/lib/libprop/prop_dictionary.c:1.41
--- src/common/lib/libprop/prop_dictionary.c:1.40 Tue Jun 28 05:18:11 2016
+++ src/common/lib/libprop/prop_dictionary.c Tue Jun 28 05:21:15 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: prop_dictionary.c,v 1.40 2016/06/28 05:18:11 pgoyette Exp $ */
+/* $NetBSD: prop_dictionary.c,v 1.41 2016/06/28 05:21:15 pgoyette Exp $ */
/*-
* Copyright (c) 2006, 2007 The NetBSD Foundation, Inc.
@@ -293,7 +293,7 @@ _prop_dict_keysym_alloc(const char *key)
* we just retain it and return it.
*/
_PROP_MUTEX_LOCK(_prop_dict_keysym_tree_mutex);
- opdk = rb_tree_find(&_prop_dict_keysym_tree, key);
+ opdk = rb_tree_find_node(&_prop_dict_keysym_tree, key);
if (opdk != NULL) {
prop_object_retain(opdk);
_PROP_MUTEX_UNLOCK(_prop_dict_keysym_tree_mutex);
@@ -329,7 +329,7 @@ _prop_dict_keysym_alloc(const char *key)
* we have to check again if it is in the tree.
*/
_PROP_MUTEX_LOCK(_prop_dict_keysym_tree_mutex);
- opdk = rb_tree_find(&_prop_dict_keysym_tree, key);
+ opdk = rb_tree_find_node(&_prop_dict_keysym_tree, key);
if (opdk != NULL) {
prop_object_retain(opdk);
_PROP_MUTEX_UNLOCK(_prop_dict_keysym_tree_mutex);
Index: src/common/lib/libprop/prop_number.c
diff -u src/common/lib/libprop/prop_number.c:1.28 src/common/lib/libprop/prop_number.c:1.29
--- src/common/lib/libprop/prop_number.c:1.28 Tue Jun 28 05:18:11 2016
+++ src/common/lib/libprop/prop_number.c Tue Jun 28 05:21:15 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: prop_number.c,v 1.28 2016/06/28 05:18:11 pgoyette Exp $ */
+/* $NetBSD: prop_number.c,v 1.29 2016/06/28 05:21:15 pgoyette Exp $ */
/*-
* Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -283,7 +283,7 @@ _prop_number_alloc(const struct _prop_nu
* we just retain it and return it.
*/
_PROP_MUTEX_LOCK(_prop_number_tree_mutex);
- opn = rb_tree_find(&_prop_number_tree, pnv);
+ opn = rb_tree_find_node(&_prop_number_tree, pnv);
if (opn != NULL) {
prop_object_retain(opn);
_PROP_MUTEX_UNLOCK(_prop_number_tree_mutex);
@@ -308,7 +308,7 @@ _prop_number_alloc(const struct _prop_nu
* we have to check again if it is in the tree.
*/
_PROP_MUTEX_LOCK(_prop_number_tree_mutex);
- opn = rb_tree_find_node(&_prop_number_tree, pnv);
+ opn = rb_tree_find_node_node(&_prop_number_tree, pnv);
if (opn != NULL) {
prop_object_retain(opn);
_PROP_MUTEX_UNLOCK(_prop_number_tree_mutex);