summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/messages.tab2
-rw-r--r--src/resv.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/messages.tab b/src/messages.tab
index b0514b7..559a0af 100644
--- a/src/messages.tab
+++ b/src/messages.tab
@@ -241,7 +241,7 @@ static struct NumericInfo replies[] = {
/* 214 */ {"RPL_STATSNLINE", ":%s 214 %s %c %s * %s %d %s", NULL},
/* 215 */ {"RPL_STATSILINE", ":%s 215 %s %c %s * %s@%s %d %s", NULL},
/* 216 */ {"RPL_STATSKLINE", ":%s 216 %s %s %s * %s :%s", NULL},
-/* 217 */ {"RPL_STATSQLINE", ":%s 217 %s %c %s :%s", NULL},
+/* 217 */ {"RPL_STATSQLINE", ":%s 217 %s %c %u %s :%s", NULL},
/* 218 */ {"RPL_STATSYLINE", ":%s 218 %s %c %s %u %u %u %u %u %u %u/%u %u/%u %s", NULL},
/* 219 */ {"RPL_ENDOFSTATS", ":%s 219 %s %c :End of /STATS report", NULL},
/* 220 */ {"RPL_STATSPLINE", ":%s 220 %s %c %d %s %d %s :%s", NULL},
diff --git a/src/resv.c b/src/resv.c
index d83ec75..ccb5c11 100644
--- a/src/resv.c
+++ b/src/resv.c
@@ -174,7 +174,7 @@ report_resv(struct Client *source_p)
conf = ptr->data;
sendto_one(source_p, form_str(RPL_STATSQLINE),
me.name, source_p->name,
- conf->until ? 'q' : 'Q',
+ conf->until ? 'q' : 'Q', conf->count,
conf->name, conf->reason);
}
@@ -183,7 +183,7 @@ report_resv(struct Client *source_p)
conf = ptr->data;
sendto_one(source_p, form_str(RPL_STATSQLINE),
me.name, source_p->name,
- conf->until ? 'q' : 'Q',
+ conf->until ? 'q' : 'Q', conf->count,
conf->name, conf->reason);
}
}