From 681b22affa7fb2517d93ce5dec9ea894491ea517 Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Tue, 6 Aug 2019 21:46:55 -0300 Subject: [PATCH] lib: fix doc comment of the "cli_show_end" northbound callback The 'show_defaults' parameter is present on the "cli_show" callback only. Signed-off-by: Renato Westphal --- lib/northbound.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/northbound.h b/lib/northbound.h index 69d7c8e0ee..ce79d907f9 100644 --- a/lib/northbound.h +++ b/lib/northbound.h @@ -347,15 +347,6 @@ struct nb_callbacks { * dnode * libyang data node that should be shown in the form of a CLI * command. - * - * show_defaults - * Specify whether to display default configuration values or not. - * This parameter can be ignored most of the time since the - * northbound doesn't call this callback for default leaves or - * non-presence containers that contain only default child nodes. - * The exception are commands associated to multiple configuration - * nodes, in which case it might be desirable to hide one or more - * parts of the command when this parameter is set to false. */ void (*cli_show_end)(struct vty *vty, struct lyd_node *dnode); };