diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-25 15:25:30 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-05-25 15:25:30 +0000 |
commit | 11e50c810040208e2466ae9987d48e24008398b7 (patch) | |
tree | d68dc7b39d4917bd7df41d4374a06bda23469d6f | |
parent | 538d452baaed6f701ae0f0c1e2b22d54e0634c9b (diff) |
BUILD : 1.7.10 (813) BUGS : 380 NOTES : Fixed a bug with listnicks option displaying
git-svn-id: svn://svn.anope.org/anope/trunk@813 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@566 5417fbe8-f217-4b02-8779-1006273d7864
-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 |