Displaying 6 results from an estimated 6 matches for "gss_release_name".
2006 Feb 10
0
Bug in gssapi support
...g to use the gssapi support and the authentication would
consistently die for me. The following patch fixes:
--- src/auth/mech-gssapi.c.orig 2006-01-10 15:46:10.000000000 +1300
+++ src/auth/mech-gssapi.c
@@ -138,7 +138,7 @@ static OM_uint32 obtain_service_credenti
return major_status;
}
- gss_release_name(&minor_status, gss_principal);
+ gss_release_name(&minor_status, &gss_principal);
return major_status;
}
as gss_release_name takes a pointer to a gss_name_t as second arg.
cheers
mark
2007 Mar 08
1
Coredump in dovecot-auth on gss auth
...=129.146.229.8, lip=XXX.YYY.17.59
Error: child 188558 (auth) killed with signal 11
Info: imap-login: Disconnected: method=PLAIN, rip=129.146.229.8, lip=XXX.YYY.17.59
The dovecot auth process SIGSEGV's and dies at login time (I think). Here's
the backtrace:
(gdb) bt full
#0 0xfef25e1a in gss_release_name () from /usr/lib/libgss.so.1
No symbol table info available.
#1 0x08064ccf in mech_gssapi_auth_free (request=0xfef3c000)
at mech-gssapi.c:394
minor_status = 0
#2 0x08060551 in auth_request_handler_flush_failures ()
at auth-request-handler.c:493
auth_request = (struct auth_...
2006 Mar 01
1
Patch to src/auth/mech-gssapi.c
....ufl.edu/~jfh |
----------------------------------------------------------------------
--- src/auth/mech-gssapi.c.orig 2006-03-01 14:21:40.000000000 -0500
+++ src/auth/mech-gssapi.c 2006-03-01 14:18:58.000000000 -0500
@@ -138,7 +138,7 @@
return major_status;
}
- gss_release_name(&minor_status, gss_principal);
+ gss_release_name(&minor_status, &gss_principal);
return major_status;
}
2014 Jul 15
3
GSSAPI
If I am trying to build OpenSSH 6.6 with Kerberos GSSAPI support, do I still need to get Simon Wilkinson's patches?
---
Scott Neugroschl | XYPRO Technology Corporation
4100 Guardian Street | Suite 100 |Simi Valley, CA 93063 | Phone 805 583-2874|Fax 805 583-0124 |
2003 Aug 10
9
updated gssapi diff
...ing it has been built correctly */
+void
+ssh_gssapi_delete_ctx(Gssctxt **ctx)
+{
+ OM_uint32 ms;
+
+ if ((*ctx) == NULL)
+ return;
+ if ((*ctx)->context != GSS_C_NO_CONTEXT)
+ gss_delete_sec_context(&ms, &(*ctx)->context, GSS_C_NO_BUFFER);
+ if ((*ctx)->name != GSS_C_NO_NAME)
+ gss_release_name(&ms, &(*ctx)->name);
+ if ((*ctx)->oid != GSS_C_NO_OID) {
+ xfree((*ctx)->oid->elements);
+ xfree((*ctx)->oid);
+ (*ctx)->oid = GSS_C_NO_OID;
+ }
+ if ((*ctx)->creds != GSS_C_NO_CREDENTIAL)
+ gss_release_cred(&ms, &(*ctx)->creds);
+ if ((*ctx)->client...
2010 May 02
2
samba4 make error - drsblobs.so
..._context.c
heimdal/lib/gssapi/mech/gss_inquire_context.c: In function ?gss_inquire_context?:
heimdal/lib/gssapi/mech/gss_inquire_context.c:40: warning: declaration of ?open? shadows a global declaration
/usr/include/fcntl.h:76: warning: shadowed declaration is here
Compiling heimdal/lib/gssapi/mech/gss_release_name.c
Compiling heimdal/lib/gssapi/mech/gss_set_cred_option.c
Compiling heimdal/lib/gssapi/mech/gss_pseudo_random.c
Compiling heimdal/../heimdal_build/gssapi-glue.c
Partially linking bin/mergedobj/heimdal_gssapi.o
Compiling heimdal/lib/gssapi/asn1_gssapi_asn1.c
Partially linking bin/mergedobj/heimdal_g...