0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00

ServerProto::Session: fix coverity issue "declaration hides parameter"

CID 11809: (#2 of 3): Parse warning (PW.PARAMETER_HIDDEN)
parameter_hidden: declaration hides parameter "e"

Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com>
This commit is contained in:
Frank Lichtenheld 2023-11-22 17:52:52 +01:00 committed by Antonio Quartulli
parent b4082c93cb
commit 185426c5e8
No known key found for this signature in database
GPG Key ID: E30C62865881C3D6

View File

@ -656,9 +656,9 @@ class ServerProto
set_housekeeping_timer();
}
}
catch (const std::exception &e)
catch (const std::exception &exc)
{
error(e);
error(exc);
}
}