From: Theodore Tso Date: Wed, 17 Aug 1994 19:53:36 +0000 (+0000) Subject: Fixed GSSAPI Object Identifier. (Transcription error between MIT and X-Git-Tag: krb5-1.0-beta4.3~160 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2bd2e9f81df253ca3b40ea20e3a5428bbe2a3796;p=krb5.git Fixed GSSAPI Object Identifier. (Transcription error between MIT and OpenVision....) git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@4170 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/gssapi/krb5/ChangeLog b/src/lib/gssapi/krb5/ChangeLog new file mode 100644 index 000000000..10711ebde --- /dev/null +++ b/src/lib/gssapi/krb5/ChangeLog @@ -0,0 +1,5 @@ +Wed Aug 17 15:47:26 1994 Theodore Y. Ts'o (tytso at tsx-11) + + * gssapi_krb5.c: Fixed OID for the krb5 mechanism. (Transcription + error.) + diff --git a/src/lib/gssapi/krb5/gssapi_krb5.c b/src/lib/gssapi/krb5/gssapi_krb5.c index 1e46e374a..79f885ab6 100644 --- a/src/lib/gssapi/krb5/gssapi_krb5.c +++ b/src/lib/gssapi/krb5/gssapi_krb5.c @@ -34,10 +34,10 @@ * The OID of the krb5 mechanism, assigned by IETF, is: * 1.3.5.1.5.2 * The OID of the krb5_name type is: - * iso(1) member-body(2) US(840) mit(113554) infosys(2) gssapi(1) + * iso(1) member-body(2) US(840) mit(113554) infosys(1) gssapi(2) * krb5(2) krb5_name(1) = 1.2.840.113554.2.1.2.1 * The OID of the krb5_principal type is: - * iso(1) member-body(2) US(840) mit(113554) infosys(2) gssapi(1) + * iso(1) member-body(2) US(840) mit(113554) infosys(1) gssapi(2) * krb5(2) krb5_principal(2) = 1.2.840.113554.2.1.2.2 */ @@ -51,8 +51,8 @@ static const gss_OID_desc oids[] = { /* this OID is from Ted. It's not official yet, but it's close. */ {5, "\053\005\001\005\002"}, - {10, "\052\206\110\206\367\022\002\001\002\001"}, - {10, "\052\206\110\206\367\022\002\001\002\002"}, + {10, "\052\206\110\206\367\022\001\002\002\001"}, + {10, "\052\206\110\206\367\022\001\002\002\002"}, }; const_gss_OID gss_mech_krb5 = oids+0;