diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-21 18:12:45 +0300 | 
|---|---|---|
| committer | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-21 18:12:45 +0300 | 
| commit | b0f8f4d23eaecde6cf9650bf986e2c5bef82b065 (patch) | |
| tree | 383a7e079b9422f58f743a3ace8b4861cb98b8fe /isisd | |
| parent | cd551a0fd5430791ce4e650ccca9b312f02b9701 (diff) | |
fabricd: fix running config
Daemons should not output warnings into the running config.
Signed-off-by: Igor Ryzhov <iryzhov@nfware.com>
Diffstat (limited to 'isisd')
| -rw-r--r-- | isisd/isis_circuit.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/isisd/isis_circuit.c b/isisd/isis_circuit.c index 896bbc2cb0..bccb9065f4 100644 --- a/isisd/isis_circuit.c +++ b/isisd/isis_circuit.c @@ -1076,10 +1076,8 @@ static int isis_interface_config_write(struct vty *vty)  	isis = isis_lookup_by_vrfid(vrf->vrf_id); -	if (isis == NULL) { -		vty_out(vty, "ISIS routing instance not found"); +	if (isis == NULL)  		return 0; -	}  	FOR_ALL_INTERFACES (vrf, ifp) {  		/* IF name */  | 
