Print this page
first pass

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/sasl_plugins/gssapi/gssapi.c
          +++ new/usr/src/lib/sasl_plugins/gssapi/gssapi.c
↓ open down ↓ 1478 lines elided ↑ open up ↑
1479 1479              return SASL_BUFOVER;
1480 1480          }
1481 1481          
1482 1482          strncpy(keytab_path, keytab, 1024);
1483 1483          
1484 1484          gsskrb5_register_acceptor_identity(keytab_path);
1485 1485      }
1486 1486  #endif
1487 1487  #endif /* !_SUN_SDK_ */
1488 1488      
1489      -    /* EXPORT DELETE START */
1490      -    /* CRYPT DELETE START */
1491 1489  #ifdef _INTEGRATED_SOLARIS_
1492 1490      /*
1493 1491       * Let libsasl know that we are a "Sun" plugin so that privacy
1494 1492       * and integrity will be allowed.
1495 1493       */
1496 1494      REG_PLUG("GSSAPI", gssapi_server_plugins);
1497 1495  #endif /* _INTEGRATED_SOLARIS_ */
1498      -    /* CRYPT DELETE END */
1499      -    /* EXPORT DELETE END */
1500 1496  
1501 1497      *out_version = SASL_SERVER_PLUG_VERSION;
1502 1498      *pluglist = gssapi_server_plugins;
1503 1499      *plugcount = 1;  
1504 1500      
1505 1501      return SASL_OK;
1506 1502  }
1507 1503  
1508 1504  /*****************************  Client Section  *****************************/
1509 1505  
↓ open down ↓ 669 lines elided ↑ open up ↑
2179 2175                                int maxversion,
2180 2176                                int *out_version, 
2181 2177                                sasl_client_plug_t **pluglist,
2182 2178                                int *plugcount)
2183 2179  {
2184 2180      if (maxversion < SASL_CLIENT_PLUG_VERSION) {
2185 2181          SETERROR(utils, "Version mismatch in GSSAPI");
2186 2182          return SASL_BADVERS;
2187 2183      }
2188 2184      
2189      -    /* EXPORT DELETE START */
2190      -    /* CRYPT DELETE START */
2191 2185  #ifdef _INTEGRATED_SOLARIS_
2192 2186      /*
2193 2187       * Let libsasl know that we are a "Sun" plugin so that privacy
2194 2188       * and integrity will be allowed.
2195 2189       */
2196 2190      REG_PLUG("GSSAPI", gssapi_client_plugins);
2197 2191  #endif /* _INTEGRATED_SOLARIS_ */
2198      -    /* CRYPT DELETE END */
2199      -    /* EXPORT DELETE END */
2200 2192  
2201 2193      *out_version = SASL_CLIENT_PLUG_VERSION;
2202 2194      *pluglist = gssapi_client_plugins;
2203 2195      *plugcount = 1;
2204 2196      
2205 2197      return SASL_OK;
2206 2198  }
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX