diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-02 12:00:57 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-02 12:00:57 +0000 |
commit | 4c6fb8032bf8a6310080069cc65c975087d93a76 (patch) | |
tree | fb5316853d6f962c13c96221f3336ea1da8b0b3a /src/inspircd_io.cpp | |
parent | 99f6009b2d0d1bc4b7ddc09f164fc19b78e6b431 (diff) |
Made extensive use of charlcat to cut down on strlcat usage
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3417 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd_io.cpp')
-rw-r--r-- | src/inspircd_io.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 01ee4d7a8..c9d64d57c 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -265,7 +265,7 @@ void ServerConfig::Read(bool bail, userrec* user) if (!strchr(Config->ServerName,'.')) { log(DEFAULT,"WARNING: <server:name> '%s' is not a fully-qualified domain name. Changed to '%s%c'",Config->ServerName,Config->ServerName,'.'); - strlcat(Config->ServerName,".",MAXBUF); + charlcat(Config->ServerName,'.',MAXBUF); } if (!Config->dns_timeout) Config->dns_timeout = 5; |