diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-06-16 21:38:15 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2022-06-16 22:31:35 +0200 |
commit | 00c89a3673af923353905a0a2a0321bc112be98c (patch) | |
tree | b5158ecc11b862b21109dc4509dea24e4c74b7ad /lib/command.c | |
parent | eigrpd: vrf variable name hides a parameter of the same name (diff) | |
download | frr-00c89a3673af923353905a0a2a0321bc112be98c.tar.xz frr-00c89a3673af923353905a0a2a0321bc112be98c.zip |
lib: Function `crypt` does not need to be declared mid function
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib/command.c')
-rw-r--r-- | lib/command.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/command.c b/lib/command.c index c4db04563..cbecc8157 100644 --- a/lib/command.c +++ b/lib/command.c @@ -429,7 +429,6 @@ static char *zencrypt(const char *passwd) { char salt[6]; struct timeval tv; - char *crypt(const char *, const char *); gettimeofday(&tv, 0); |