mirror of
https://github.com/tbamud/tbamud.git
synced 2025-09-22 05:50:48 +02:00
Update handler.c
This commit is contained in:
parent
407c7b0e3a
commit
b219c16d73
1 changed files with 2 additions and 1 deletions
|
@ -71,7 +71,8 @@ int is_name(const char *str, const char *namelist)
|
|||
}
|
||||
|
||||
/* skip to next name */
|
||||
for (; isalpha(*curname); curname++);
|
||||
for (; isalpha(*curname); curname++)
|
||||
; /* semi-colon moved to suppress warning */
|
||||
if (!*curname)
|
||||
return (0);
|
||||
curname++; /* first char of new name */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue