diff options
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. |
