diff options
| author | 2022-11-16 16:29:12 +0000 | |
|---|---|---|
| committer | 2022-11-16 16:29:12 +0000 | |
| commit | 92739a57f6020f07fcc27b80f19869bd85369dcb (patch) | |
| tree | a1c19b2ee89521c2ecb023ad8920491ddd82adfc /src/socket.cpp | |
| parent | Release v4.0.0 alpha 16. (diff) | |
| parent | Update the Windows dependencies. (diff) | |
Merge branch 'insp3' into master.
Diffstat (limited to 'src/socket.cpp')
| -rw-r--r-- | src/socket.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 000a3d030..bbeaeffee 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -419,7 +419,8 @@ std::string irc::sockets::cidr_mask::str() const break; case AF_UNIX: - return sa.un.sun_path; + // TODO: make bits a vector<uint8_t> so we can return the actual path here. + return "/*"; default: // If we have reached this point then we have encountered a bug. |
