Convert new_user_func_t to return void.
[srvx.git] / src / proto-p10.c
index d288524497a75ee28fcfb4070e14372fdce8b622..8174a6919386e61a37fc0d6f1c8b5cf8247f180d 100644 (file)
@@ -2139,8 +2139,7 @@ AddUser(struct server* uplink, const char *nick, const char *ident, const char *
     if (IsLocal(uNode))
         irc_user(uNode);
     for (n=0; (n<nuf_used) && !uNode->dead; n++)
-        if (nuf_list[n](uNode))
-            break;
+        nuf_list[n](uNode);
     return uNode;
 }