From a5bfc81b04dc5616f060511ac0e280d3f4ce777d Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Wed, 16 Oct 2013 11:58:14 +0000 Subject: [PATCH] Fix typo bufer -> buffer. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@395 13b04d17-f746-0410-82c6-800466cd88b0 --- source/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/commands.c b/source/commands.c index 215f3b3..e899aa8 100644 --- a/source/commands.c +++ b/source/commands.c @@ -4314,7 +4314,7 @@ void command_completion(char unused, char *not_used) if (com && *com && my_strnicmp(com, dll->name, strlen(com))) continue; strlcat(buffer, dll->name, sizeof buffer); - strlcat(buffer, space, sizeof bufer); + strlcat(buffer, space, sizeof buffer); if (++c == 4) { put_it("%s", convert_output_format("$G $[15]0 $[15]1 $[15]2 $[15]3", "%s", buffer));