summaryrefslogtreecommitdiffstats
path: root/lib/graph.h
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2016-09-08 20:14:16 +0200
committerQuentin Young <qlyoung@cumulusnetworks.com>2016-09-08 20:14:16 +0200
commit5e8856790c50c30ea208e5cd28021818e5f2fcbf (patch)
tree2afe9f724865459c27c86ac3fdfd48503519cd96 /lib/graph.h
parentlib: Fix deduplication bug, reinstate graph print (diff)
downloadfrr-5e8856790c50c30ea208e5cd28021818e5f2fcbf.tar.xz
frr-5e8856790c50c30ea208e5cd28021818e5f2fcbf.zip
lib: Remove automatic node deletion
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'lib/graph.h')
-rw-r--r--lib/graph.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/graph.h b/lib/graph.h
index bccbbb94a..b6a03b938 100644
--- a/lib/graph.h
+++ b/lib/graph.h
@@ -61,10 +61,6 @@ graph_new_node (struct graph *graph, void *data, void (*del) (void*));
* Before deletion, this function removes all edges to and from this node from
* any neighbor nodes.
*
- * If, as a result of this operation, any neighbor node has no edges either to
- * or from itself, that node will be deleted as well. If the graph topology is
- * e.g. a star this will result in the deletion of all nodes.
- *
* If *data and *del are non-null, the following call is made:
* (*node->del) (node->data);
*