Home
last modified time | relevance | path

Searched refs:newopts (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_identity.c155 pkinit_identity_opts *newopts; in pkinit_dup_identity_opts() local
159 retval = pkinit_init_identity_opts(&newopts); in pkinit_dup_identity_opts()
166 newopts->identity = strdup(src_opts->identity); in pkinit_dup_identity_opts()
167 if (newopts->identity == NULL) in pkinit_dup_identity_opts()
171 retval = copy_list(&newopts->anchors, src_opts->anchors); in pkinit_dup_identity_opts()
175 retval = copy_list(&newopts->intermediates,src_opts->intermediates); in pkinit_dup_identity_opts()
179 retval = copy_list(&newopts->crls, src_opts->crls); in pkinit_dup_identity_opts()
184 newopts->ocsp = strdup(src_opts->ocsp); in pkinit_dup_identity_opts()
185 if (newopts->ocsp == NULL) in pkinit_dup_identity_opts()
190 newopts->cert_filename = strdup(src_opts->cert_filename); in pkinit_dup_identity_opts()
[all …]
/titanic_41/usr/src/cmd/fs.d/nfs/mount/
H A Dmount.c973 char *saveopt, *optstr, *opts, *newopts, *val; in set_args() local
992 newopts = malloc(optlen); in set_args()
993 if (opts == NULL || newopts == NULL) { in set_args()
997 if (newopts) in set_args()
998 free(newopts); in set_args()
1001 newopts[0] = '\0'; in set_args()
1215 if (newopts[0]) in set_args()
1216 strcat(newopts, ","); in set_args()
1217 strcat(newopts, saveopt); in set_args()
1222 if (newopts[0]) in set_args()
[all …]
/titanic_41/usr/src/cmd/logadm/
H A Dconf.h38 void conf_replace(const char *lhs, struct opts *newopts);
H A Dconf.c578 conf_replace(const char *lhs, struct opts *newopts) in conf_replace() argument
586 cp->cf_opts = newopts; in conf_replace()
588 if (newopts == NULL) in conf_replace()
591 fillconflist(0, lhs, newopts, NULL, 0); in conf_replace()
/titanic_41/usr/src/cmd/fs.d/nfs/mountd/
H A Dmountd.c117 static int newopts(char *);
938 if (newopts(sh->sh_opts)) in mount_enoent_error()
1314 if (newopts(sh->sh_opts)) in mount()
1965 newopts(char *opts) in newopts() function
2154 if (newopts(sh->sh_opts)) in check_client()
/titanic_41/usr/src/cmd/zfs/
H A Dzfs_main.c5972 append_options(char *mntopts, char *newopts) in append_options() argument
5977 if (len + 1 + strlen(newopts) >= MNT_LINE_MAX) { in append_options()
5987 (void) strcpy(&mntopts[len], newopts); in append_options()