Home
last modified time | relevance | path

Searched refs:pArgString (Results 1 – 1 of 1) sorted by last modified time

/illumos-gate/usr/src/lib/libsasl/lib/
H A Dsaslutil.c598 char *pArgString = NULL; /* where to start from next */ in getopt() local
606 pArgString = pIndexPosition; in getopt()
610 if (pArgString == NULL) { in getopt()
621 pArgString = argv[optind++]; /* set this to the next argument ptr */ in getopt()
623 if (('/' != *pArgString) && /* doesn't start with a slash or a dash? */ in getopt()
624 ('-' != *pArgString)) { in getopt()
632 if ((strcmp(pArgString, "-") == 0) || in getopt()
633 (strcmp(pArgString, "--") == 0)) { in getopt()
639 pArgString++; /* look past the / or - */ in getopt()
642 if (':' == *pArgString) { /* is it a colon? */ in getopt()
[all …]