Begin removing the decimal point from our version number (901 instead of 9.01)
[citadel.git] / citadel / modules / nntp / serv_nntp.c
index dee22bdfc4fedc72808d3be289d995fb8e7c2b6f..9e77f8dae5c7b6ccaa01fed9312f03297355913d 100644 (file)
@@ -238,7 +238,7 @@ void nntp_starttls(void)
 void nntp_capabilities(void)
 {
        cprintf("101 Capability list:\r\n");
-       cprintf("IMPLEMENTATION Citadel v%d.%02d\r\n", (REV_LEVEL/100), (REV_LEVEL%100));
+       cprintf("IMPLEMENTATION Citadel %d\r\n", REV_LEVEL);
        cprintf("VERSION 2\r\n");
        cprintf("READER\r\n");
        cprintf("MODE-READER\r\n");