Parent Directory
|
Revision Log
|
Patch
| Revision 1.75 by sysadm, Tue Nov 11 00:28:05 2025 UTC | Revision 1.76 by sysadm, Mon Nov 17 12:16:48 2025 UTC | |
|---|---|---|
| # | Line 1191 int section_list_display(const char *sna | Line 1191 int section_list_display(const char *sna |
| 1191 | // Verify format | // Verify format |
| 1192 | for (i = 0, ok = 1; ok && username[i] != '\0'; i++) | for (i = 0, ok = 1; ok && username[i] != '\0'; i++) |
| 1193 | { | { |
| 1194 | if (!(isalpha(username[i]) || (i > 0 && (isdigit(username[i]) || username[i] == '_')))) | if (!(isalpha((int)username[i]) || (i > 0 && (isdigit((int)username[i]) || username[i] == '_')))) |
| 1195 | { | { |
| 1196 | ok = 0; | ok = 0; |
| 1197 | } | } |
|
||||||||
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |