Home | History | Annotate | Download | only in libpam

Lines Matching defs:optv

68 	char *opt, **optv;
80 if (strncmp(cur->optv[i], option, len) == 0 &&
81 (cur->optv[i][len] == '\0' || cur->optv[i][len] == '='))
88 for (free(cur->optv[i]); i < cur->optc; ++i)
89 cur->optv[i] = cur->optv[i + 1];
90 cur->optv[i] = NULL;
98 optv = realloc(cur->optv,
99 sizeof(*optv) * ((size_t)cur->optc + 2));
100 if (optv == NULL) {
104 optv[i] = opt;
105 optv[i + 1] = NULL;
106 cur->optv = optv;
110 FREE(cur->optv[i]);
111 cur->optv[i] = opt;