~ubuntu-branches/ubuntu/raring/globus-gsi-proxy-core/raring

« back to all changes in this revision

Viewing changes to library/globus_gsi_proxy_handle.c

  • Committer: Bazaar Package Importer
  • Author(s): Mattias Ellert
  • Date: 2010-06-04 04:43:30 UTC
  • Revision ID: james.westby@ubuntu.com-20100604044330-xyxim643k9bmbx3k
Tags: 4.4-2
* Converting to package format 3.0 (quilt)
* Add new build dependency on texlive-font-utils due to changes in texlive
  packaging (epstopdf moved there) (Closes: #583045)
* Fix OID registration pollution

Show diffs side-by-side

added added

removed removed

Lines of Context:
646
646
      case GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_IMPERSONATION_PROXY:
647
647
      case GLOBUS_GSI_CERT_UTILS_TYPE_RFC_IMPERSONATION_PROXY:
648
648
        result = globus_gsi_proxy_handle_set_policy(
649
 
            handle, NULL, 0, OBJ_sn2nid(IMPERSONATION_PROXY_SN));
 
649
            handle, NULL, 0, OBJ_txt2nid(IMPERSONATION_PROXY_OID));
650
650
        break;
651
651
 
652
652
      case GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_INDEPENDENT_PROXY:
653
653
      case GLOBUS_GSI_CERT_UTILS_TYPE_RFC_INDEPENDENT_PROXY:
654
654
        result = globus_gsi_proxy_handle_set_policy(
655
 
            handle, NULL, 0, OBJ_sn2nid(INDEPENDENT_PROXY_SN));
 
655
            handle, NULL, 0, OBJ_txt2nid(INDEPENDENT_PROXY_OID));
656
656
        break;
657
657
 
658
658
      case GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_LIMITED_PROXY:
659
659
      case GLOBUS_GSI_CERT_UTILS_TYPE_RFC_LIMITED_PROXY:
660
660
        result = globus_gsi_proxy_handle_set_policy(
661
 
            handle, NULL, 0, OBJ_sn2nid(LIMITED_PROXY_SN));
 
661
            handle, NULL, 0, OBJ_txt2nid(LIMITED_PROXY_OID));
662
662
        break;
663
663
      default:
664
664
        break;