Home | History | Annotate | Download | only in hostapd

Lines Matching full:pos2

40 	char buf[128], *pos, *pos2;
82 pos2 = pos;
83 while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
84 pos2++;
85 *pos2 = '\0';
222 char buf[512], *pos, *start, *pos2;
446 pos2 = pos;
447 while (*pos2 != '\0' && *pos2 != ' ' &&
448 *pos2 != '\t' && *pos2 != '#')
449 pos2++;
450 if (pos2 - pos != 32) {
468 pos = pos2;
470 pos2 = pos;
471 while (*pos2 != '\0' && *pos2 != ' ' &&
472 *pos2 != '\t' && *pos2 != '#')
473 pos2++;
474 if ((pos2 - pos) & 1) {
479 user->password = os_malloc((pos2 - pos) / 2);
486 (pos2 - pos) / 2) < 0) {
491 user->password_len = (pos2 - pos) / 2;
492 pos = pos2;