Make all auth module init functions public, since they are compiled with -fvisibility...
authorJelmer Vernooij <jelmer@samba.org>
Wed, 20 Feb 2008 18:34:45 +0000 (19:34 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 20 Feb 2008 18:34:45 +0000 (19:34 +0100)
source/auth/auth_anonymous.c
source/auth/auth_developer.c
source/auth/auth_sam.c
source/auth/auth_unix.c
source/auth/auth_winbind.c

index bcab918347518956136e0caf60608f9b629f9c40..38c13d4b659a66c65b2b4b5d4ac5a1ecf71741c0 100644 (file)
@@ -63,7 +63,7 @@ static const struct auth_operations anonymous_auth_ops = {
        .check_password = anonymous_check_password
 };
 
-NTSTATUS auth_anonymous_init(void)
+_PUBLIC_ NTSTATUS auth_anonymous_init(void)
 {
        NTSTATUS ret;
 
index 57eb752ac8708d0cf11daf90f1dac253a169d5f9..0da947b68d9e8e23bd106aeed58aa099db650ce0 100644 (file)
@@ -186,7 +186,7 @@ static const struct auth_operations fixed_challenge_auth_ops = {
        .check_password = fixed_challenge_check_password
 };
 
-NTSTATUS auth_developer_init(void)
+_PUBLIC_ NTSTATUS auth_developer_init(void)
 {
        NTSTATUS ret;
 
index 0885d8265ad7a8f34d1832cf49eb0023ee54a46a..918964015039951f11f605e394f1bce25eec40d2 100644 (file)
@@ -425,7 +425,7 @@ static const struct auth_operations sam_ops = {
        .check_password = authsam_check_password
 };
 
-NTSTATUS auth_sam_init(void)
+_PUBLIC_ NTSTATUS auth_sam_init(void)
 {
        NTSTATUS ret;
 
index 62fb42935a415d3110fa6d00b03ccdf893d15d58..20e198701d67a4a549488b3d62090a8ea8c63dc0 100644 (file)
@@ -829,7 +829,7 @@ static const struct auth_operations unix_ops = {
        .check_password = authunix_check_password
 };
 
-NTSTATUS auth_unix_init(void)
+_PUBLIC_ NTSTATUS auth_unix_init(void)
 {
        NTSTATUS ret;
 
index 89ae3195dfd95b84d8630b3ae06f5b31a807f471..2f8074d3cbb22a560cd33a7b832f3c0142b67b84 100644 (file)
@@ -260,7 +260,7 @@ static const struct auth_operations winbind_ops = {
        .check_password = winbind_check_password
 };
 
-NTSTATUS auth_winbind_init(void)
+_PUBLIC_ NTSTATUS auth_winbind_init(void)
 {
        NTSTATUS ret;