Lines Matching full:minor
46 check_replay_error(const char *msg, OM_uint32 major, OM_uint32 minor) in check_replay_error() argument
54 check_gsserr(msg, major, minor); in check_replay_error()
58 (void)gss_display_status(&tmpmin, minor, GSS_C_MECH_CODE, GSS_C_NULL_OID, in check_replay_error()
71 OM_uint32 minor, major, flags; in main() local
90 major = gss_init_sec_context(&minor, GSS_C_NO_CREDENTIAL, &ictx, tname, in main()
94 check_gsserr("gss_init_sec_context(1)", major, minor); in main()
98 major = gss_accept_sec_context(&minor, &actx, GSS_C_NO_CREDENTIAL, &itok, in main()
101 check_gsserr("gss_accept_sec_context(1)", major, minor); in main()
102 (void)gss_release_buffer(&minor, &atok); in main()
103 (void)gss_delete_sec_context(&minor, &actx, NULL); in main()
106 major = gss_accept_sec_context(&minor, &actx, GSS_C_NO_CREDENTIAL, &itok, in main()
109 check_replay_error("gss_accept_sec_context(2)", major, minor); in main()
113 (void)gss_release_buffer(&minor, &itok); in main()
114 major = gss_init_sec_context(&minor, GSS_C_NO_CREDENTIAL, &ictx, tname, in main()
118 check_replay_error("gss_init_sec_context(2)", major, minor); in main()
120 (void)gss_release_name(&minor, &tname); in main()
121 (void)gss_release_buffer(&minor, &itok); in main()
122 (void)gss_release_buffer(&minor, &atok); in main()
123 (void)gss_delete_sec_context(&minor, &ictx, NULL); in main()
124 (void)gss_delete_sec_context(&minor, &actx, NULL); in main()