diff options
-rw-r--r-- | src/core/os_sgline.c | 4 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/src/core/os_sgline.c b/src/core/os_sgline.c index 7185b885f..bd3181b39 100644 --- a/src/core/os_sgline.c +++ b/src/core/os_sgline.c @@ -115,7 +115,9 @@ int do_sgline(User * u) } if (mask && (reason = strtok(NULL, ""))) { - /* Clean up the last character of the mask if it is a space. */ + /* Clean up the last character of the mask if it is a space + * See bug #761 + */ size_t masklen = strlen(mask); if (mask[masklen - 1] == ' ') mask[masklen - 1] = '\0'; diff --git a/version.log b/version.log index 602ab960c..a2901d762 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="19" VERSION_EXTRA="-svn" -VERSION_BUILD="1287" +VERSION_BUILD="1288" # $Log$ # +# BUILD : 1.7.19 (1288) +# BUGS : 761 +# NOTES : Fixing up a comment from the last commit +# # BUILD : 1.7.19 (1287) # BUGS : 761 # NOTES : Fixed OperServ SGLINE to now remove trailing spaces from the mask... this is not 100% syntactically correct, but spaces on the end are not usually needed anyways |