]> jfr.im git - solanum.git/blobdiff - ircd/msgbuf.c
librb: remove unnecessary NULL from the end of rb_string_to_array output
[solanum.git] / ircd / msgbuf.c
index 50538d27031d049c231bdedd9e4ebc1c0aab584d..1336c096bfb76502f12f7ed796971d7531f86747 100644 (file)
@@ -34,7 +34,6 @@ msgbuf_parse(struct MsgBuf *msgbuf, char *line)
 {
        char *ch;
        char *parv[MAXPARA];
-       size_t n_para;
 
        /* skip any leading spaces */
        for (ch = line; *ch && *ch == ' '; ch++)
@@ -78,6 +77,8 @@ msgbuf_parse(struct MsgBuf *msgbuf, char *line)
 
                        *ch++ = '\0';
                }
+               else
+                       ch = t;
        }
 
        /* skip any whitespace between tags and origin */
@@ -102,44 +103,30 @@ msgbuf_parse(struct MsgBuf *msgbuf, char *line)
        if (*ch == '\0')
                return 1;
 
-       n_para = rb_string_to_array(ch, parv, MAXPARA);
-       if (n_para == 0)
+       msgbuf->n_para = rb_string_to_array(ch, (char **)msgbuf->para, MAXPARA);
+       if (msgbuf->n_para == 0)
                return 1;
 
-       msgbuf->cmd = parv[0];
-       for (size_t i = 0; i < n_para; i++)
-               msgbuf_append_para(msgbuf, parv[i]);
-
-       return 0;
-}
-
-static int
-msgbuf_has_matching_tags(struct MsgBuf *msgbuf, unsigned int capmask)
-{
-       for (size_t i = 0; i < msgbuf->n_tags; i++)
-       {
-               if ((msgbuf->tags[i].capmask & capmask) != 0)
-                       return 1;
-       }
-
+       msgbuf->cmd = msgbuf->para[0];
        return 0;
 }
 
 static void
 msgbuf_unparse_tags(char *buf, size_t buflen, struct MsgBuf *msgbuf, unsigned int capmask)
 {
-       if (!msgbuf_has_matching_tags(msgbuf, capmask))
-               return;
-
-       *buf = '@';
+       bool has_tags = false;
 
        for (size_t i = 0; i < msgbuf->n_tags; i++)
        {
                if ((msgbuf->tags[i].capmask & capmask) == 0)
                        continue;
 
-               if (i != 0)
+               if (has_tags) {
                        rb_strlcat(buf, ";", buflen);
+               } else {
+                       *buf = '@';
+                       has_tags = true;
+               }
 
                rb_strlcat(buf, msgbuf->tags[i].key, buflen);
 
@@ -151,7 +138,8 @@ msgbuf_unparse_tags(char *buf, size_t buflen, struct MsgBuf *msgbuf, unsigned in
                }
        }
 
-       rb_strlcat(buf, " ", buflen);
+       if (has_tags)
+               rb_strlcat(buf, " ", buflen);
 }
 
 void