diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/nickserv.c | 6 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -1,6 +1,7 @@ Anope Version S V N -------------------- Provided by Anope Dev. <dev@anope.org> - 2005 +05/25 F Not all nick options were displayed in listnicks. [#380] Anope Version 1.7.10 -------------------- diff --git a/src/nickserv.c b/src/nickserv.c index a68916c82..9a354f2be 100644 --- a/src/nickserv.c +++ b/src/nickserv.c @@ -117,17 +117,17 @@ void listnicks(int count_only, const char *nick) need_comma = 1; } if (na->nc->flags & NI_SECURE) { - end += snprintf(buf, sizeof(buf) - (end - buf), "%sSecurity", + end += snprintf(end, sizeof(buf) - (end - buf), "%sSecurity", need_comma ? commastr : ""); need_comma = 1; } if (na->nc->flags & NI_PRIVATE) { - end += snprintf(buf, sizeof(buf) - (end - buf), "%sPrivate", + end += snprintf(end, sizeof(buf) - (end - buf), "%sPrivate", need_comma ? commastr : ""); need_comma = 1; } if (na->status & NS_NO_EXPIRE) { - end += snprintf(buf, sizeof(buf) - (end - buf), "%sNo Expire", + end += snprintf(end, sizeof(buf) - (end - buf), "%sNo Expire", need_comma ? commastr : ""); need_comma = 1; } diff --git a/version.log b/version.log index 1ae8606eb..fe875308b 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="10" -VERSION_BUILD="811" +VERSION_BUILD="813" # $Log$ # +# BUILD : 1.7.10 (813) +# BUGS : 380 +# NOTES : Fixed a bug with listnicks option displaying +# # BUILD : 1.7.10 (811) # BUGS : # NOTES : Development Framework |