]> git.sur5r.net Git - openldap/commitdiff
Cleanup prev commit
authorHoward Chu <hyc@openldap.org>
Mon, 12 Apr 2010 20:21:13 +0000 (20:21 +0000)
committerHoward Chu <hyc@openldap.org>
Mon, 12 Apr 2010 20:21:13 +0000 (20:21 +0000)
libraries/libldap/tls_m.c

index 3f45f201697ecb08be0958516e6918672e584c42..f2fd818b031fc09eb36d2737017b64dde4602ad5 100644 (file)
@@ -103,9 +103,10 @@ static PRDescIdentity      tlsm_layer_id;
 
 static const PRIOMethods tlsm_PR_methods;
 
-static const char* pem_library = "nsspem";
-static const char *pem_mod_name = "PEM";
-static SECMODModule* pem_module;
+#define PEM_LIBRARY    "nsspem"
+#define PEM_MODULE     "PEM"
+
+static SECMODModule *pem_module;
 
 #define DEFAULT_TOKEN_NAME "default"
 /* sprintf format used to create token name */
@@ -978,9 +979,9 @@ tlsm_init_pem_module( void )
 
        /* not loaded - load it */
        /* get the system dependent library name */
-       fullname = PR_GetLibraryName( NULL, pem_library );
+       fullname = PR_GetLibraryName( NULL, PEM_LIBRARY );
        /* Load our PKCS#11 module */
-       configstring = PR_smprintf( "library=%s name=%s parameters=\"\"", fullname, pem_mod_name );
+       configstring = PR_smprintf( "library=%s name=" PEM_MODULE " parameters=\"\"", fullname );
        PL_strfree( fullname );
 
        pem_module = SECMOD_LoadUserModule( configstring, NULL, PR_FALSE );