diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-11-11 14:33:41 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-11-11 14:41:27 -0500 | 
| commit | e36f61b507746afff375759b1e496af529b98b26 (patch) | |
| tree | 98bbe33ad8052fe135e3955bba02d7c34734c3fe /lib/vty.c | |
| parent | 7cc91e67a3f4dc16bec63fbaac097719d401a578 (diff) | |
*: Rename quagga_timestamp with frr_timestamp
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib/vty.c')
| -rw-r--r-- | lib/vty.c | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -283,10 +283,10 @@ done:  /* Output current time to the vty. */  void vty_time_print(struct vty *vty, int cr)  { -	char buf[QUAGGA_TIMESTAMP_LEN]; +	char buf[FRR_TIMESTAMP_LEN]; -	if (quagga_timestamp(0, buf, sizeof(buf)) == 0) { -		zlog_info("quagga_timestamp error"); +	if (frr_timestamp(0, buf, sizeof(buf)) == 0) { +		zlog_info("frr_timestamp error");  		return;  	}  	if (cr)  | 
