Skip to content
Extraits de code Groupes Projets

Add the query to the `update` command to filter karas to update

Fusionnées Kubat a demandé de fusionner dev-kubat vers master
2 files
+ 61
44
Comparer les modifications
  • Côte à côte
  • En ligne

Fichiers

  • 23f4f75a
    FIX: Correct argument parsing · 23f4f75a
    Kubat rédigé
    In case of argument parsing, the parser could trip over a null separator
    and place a '\0' between the next command and the next command's
    argument, resulting in splitting things in a non correct way.
    
    This is fixed by this commit.
    
    Also introduce a log function for the commands (print multiple log lines
    and warnings if needed).
+ 3
0
@@ -29,6 +29,9 @@ struct lkt_command lkt_command_parse(char *raw);
@@ -29,6 +29,9 @@ struct lkt_command lkt_command_parse(char *raw);
struct lkt_command lkt_command_clone(struct lkt_command *c);
struct lkt_command lkt_command_clone(struct lkt_command *c);
void lkt_command_free(struct lkt_command *c);
void lkt_command_free(struct lkt_command *c);
 
/* Print debug and warning informations about the passed command. */
 
void lkt_command_log_to_debug(const struct lkt_command *);
 
/* Messages that are send and recieved */
/* Messages that are send and recieved */
struct lkt_message;
struct lkt_message;
Chargement en cours