Skip to content

Commit

Permalink
Replace missing *s
Browse files Browse the repository at this point in the history
  • Loading branch information
vanosg authored Dec 1, 2023
1 parent 7cf0ec6 commit 8ce9053
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mod/server.mod/servmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -1530,7 +1530,7 @@ static int got900(char *from, char *msg)
newsplit(&msg); /* nick!ident@host */
newsplit(&msg); /* account */
fixcolon(msg);
putlog(LOG_SERV, "%s: %s", from, msg);
putlog(LOG_SERV, "*", "%s: %s", from, msg);
return 0;
}

Expand All @@ -1540,7 +1540,7 @@ static int got901(char *from, char *msg)
newsplit(&msg); /* nick */
newsplit(&msg); /* nick!ident@host */
fixcolon(msg);
putlog(LOG_SERV, "%s: %s", from, msg);
putlog(LOG_SERV, "*", "%s: %s", from, msg);
return 0;
}

Expand Down

0 comments on commit 8ce9053

Please sign in to comment.