Skip to content

Commit

Permalink
fixup! fixup! fixup! squash! Consistently use uid_t/gid_t for credent…
Browse files Browse the repository at this point in the history
…ials
  • Loading branch information
kheaactua committed Jan 31, 2025
1 parent b8bbeaa commit b0e332e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion implementation/configuration/include/internal.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ inline constexpr std::uint32_t MAX_RECONNECTS_LOCAL_TCP = 5;
#endif

inline constexpr uid_t ANY_UID = (std::numeric_limits<uid_t>::max)();
inline constexpr gid_t ANY_GID = (std::numeric_limits<uid_t>::max)();
inline constexpr gid_t ANY_GID = (std::numeric_limits<gid_t>::max)();

enum class port_type_e {
PT_OPTIONAL,
Expand Down

0 comments on commit b0e332e

Please sign in to comment.