summaryrefslogtreecommitdiff
path: root/libs/libcurl/src/splay.c
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libcurl/src/splay.c')
-rw-r--r--libs/libcurl/src/splay.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/libcurl/src/splay.c b/libs/libcurl/src/splay.c
index 210a427bbc..e5031a70ef 100644
--- a/libs/libcurl/src/splay.c
+++ b/libs/libcurl/src/splay.c
@@ -113,9 +113,9 @@ struct Curl_tree *Curl_splayinsert(struct curltime i,
t = Curl_splay(i, t);
DEBUGASSERT(t);
if(compare(i, t->key) == 0) {
- /* There already exists a node in the tree with the very same key. Build
- a doubly-linked circular list of nodes. We add the new 'node' struct
- to the end of this list. */
+ /* There already exists a node in the tree with the same key. Build a
+ doubly-linked circular list of nodes. We add the new 'node' struct to
+ the end of this list. */
node->key = KEY_NOTUSED; /* we set the key in the sub node to NOTUSED
to quickly identify this node as a subnode */
@@ -199,7 +199,7 @@ struct Curl_tree *Curl_splaygetbest(struct curltime i,
}
-/* Deletes the very node we point out from the tree if it is there. Stores a
+/* Deletes the node we point out from the tree if it is there. Stores a
* pointer to the new resulting tree in 'newroot'.
*
* Returns zero on success and non-zero on errors!