Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/language.c
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ static void read_lang(char *langfile)
}
if ((ctmp = strchr(lbuf, ',')))
strcpy(ltext, ctmp + 1);
else
else
putlog(LOG_MISC, "*", "LANG: Malformed text line (missing ,) in %s at %d.",
langfile, lline);
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/mod/channels.mod/channels.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ static int is_extban_mask(const char *mask)
}

/* Extban prefix from ISUPPORT EXTBAN, if present.
* EXTBAN grammar is [prefix],<types>
* EXTBAN grammar is [prefix],<types>
*/
static void get_extban_prefix(char *prefix)
{
Expand Down
2 changes: 1 addition & 1 deletion src/mod/channels.mod/cmdschan.c
Original file line number Diff line number Diff line change
Expand Up @@ -1628,7 +1628,7 @@ static void cmd_chanset(struct userrec *u, int idx, char *par)
if (tcl_channel_modify(0, chan, 1, list) == TCL_OK) {
strlcpy(value, list[0], 2);
len = strlen(answers);
egg_snprintf(answers + len, (sizeof answers) - len,
egg_snprintf(answers + len, (sizeof answers) - len,
(len == 0) ? "%s" : " %s", list[0]); /* Concatenation */
} else if (!all || !chan->next)
dprintf(idx, "Error trying to set %s for %s, invalid mode.\n",
Expand Down
Loading