]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/numeric.c
Make real use of the CLIENT_SERVICE client type.
[ngircd-alex.git] / src / ngircd / numeric.c
index af1ac027927f5215aa0070f0ca3b1c804f0125e3..927989db9923d99567703938a9800ec60b8803ab 100644 (file)
@@ -252,7 +252,8 @@ IRC_Num_ENDOFMOTD(CLIENT * Client, UNUSED REQUEST * Req)
        /* Announce all the users to the new server */
        c = Client_First();
        while (c) {
-               if (Client_Type(c) == CLIENT_USER) {
+               if (Client_Type(c) == CLIENT_USER ||
+                   Client_Type(c) == CLIENT_SERVICE) {
                        if (!Announce_User(Client, c))
                                return DISCONNECTED;
                }