]> git.sur5r.net Git - openldap/commitdiff
Disable connectionless support until someone implements
authorKurt Zeilenga <kurt@openldap.org>
Mon, 2 Aug 1999 07:40:15 +0000 (07:40 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Mon, 2 Aug 1999 07:40:15 +0000 (07:40 +0000)
a UDP listener.

servers/slapd/main.c

index 6d310de8c3bd5c1a8e8bf2d9e3c9d3bd969c6742..0cbdab394aaed6cd4bf19ff9db028dcc61ba8a9a 100644 (file)
@@ -271,7 +271,9 @@ int main( int argc, char **argv )
 
 #ifdef LDAP_CONNECTIONLESS
                case 'c':       /* do connectionless (udp) */
-                       udp = 1;
+                       /* udp = 1; */
+                       fprintf( stderr, "connectionless support not supported");
+                       exit( -1 );
                        break;
 #endif