Searched defs:kerror (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/keytab/
H A Dread_servi.c49 krb5_error_code kerror = KSUCCESS; local
58 if ((kerror = krb5_kt_default_name(context, (char *)keytabname,
60 return (kerror);
67 if ((kerror = krb5_kt_resolve(context, (char *)keytabname, &id)))
68 return (kerror);
70 kerror = krb5_kt_get_entry(context, id, principal, vno, enctype, &entry);
74 if (kerror)
75 return(kerror);
H A Dkt_srvtab.c190 krb5_error_code kerror = 0; local
194 if ((kerror = krb5_ktsrvint_open(context, id)))
195 return(kerror);
212 while ((kerror = krb5_ktsrvint_read_entry(context, id, &ent)) == 0) {
232 if (kerror == KRB5_KT_END) {
234 kerror = 0;
236 kerror = KRB5_KT_KVNONOTFOUND;
238 kerror = KRB5_KT_NOTFOUND;
240 if (kerror) {
243 return kerror;
316 krb5_error_code kerror; local
450 krb5_error_code kerror; local
[all...]
H A Dkt_file.c264 krb5_error_code kerror = 0; local
269 kerror = KTLOCK(id);
270 if (kerror)
271 return kerror;
274 if ((kerror = krb5_ktfileint_openr(context, id))) {
276 return(kerror);
288 if ((kerror = krb5_ktfileint_read_entry(context, id, &new_entry)))
320 if ((kerror = krb5_c_enctype_compare(context, enctype,
387 if (kerror == KRB5_KT_END) {
389 kerror
483 krb5_error_code kerror; local
513 krb5_error_code kerror; local
879 krb5_error_code kerror; local
1085 krb5_error_code kerror; local
1176 krb5_error_code kerror; local
[all...]
/illumos-gate/usr/src/lib/krb5/kdb/
H A Dkeytab.c128 krb5_error_code kerror = 0; local
145 if ((kerror = krb5_db_inited(context)))
146 return(kerror);
149 kerror = krb5_db_get_principal(context, principal, &
151 if (kerror) {
153 return(kerror);
162 kerror = KRB5_KT_NOTFOUND;
167 kerror = krb5_db_get_mkey(context, &master_key);
168 if (kerror)
175 kerror
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/ftp/
H A Dsecure.c291 int kerror; local
295 if ((kerror =
299 kerror, (kerror == -1) ? strerror(errno) :
308 if ((kerror = looping_read(fd, (char *)ucbuf, length))
311 length, kerror == -1 ?
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/
H A Dinit_sec_context.c1155 krb5_error_code kerror = 0; local
1163 if ((kerror = krb5_ktfileint_openr(context, id))){
1165 "kerror= %d\n", kerror);
1166 return(kerror);
1178 if ((kerror = krb5_ktfileint_read_entry(context, id, &new_entry)))
1204 if ((kerror = krb5_c_enctype_compare(context, enctype,
1278 if (kerror == KRB5_KT_END) {
1280 kerror = 0;
1282 kerror
[all...]

Completed in 64 milliseconds