Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
92eb657c
Commit
92eb657c
authored
Sep 28, 1998
by
Kurt Zeilenga
Browse files
Use autoconf headers.
parent
ae21b1ee
Changes
4
Hide whitespace changes
Inline
Side-by-side
clients/tools/ldapdelete.c
View file @
92eb657c
/* ldapdelete.c - simple program to delete an entry using LDAP */
#define DISABLE_BRIDGE
#include
"portable.h"
#include
<stdio.h>
#include
<string.h>
#include
<
ac/
string.h>
#include
<stdlib.h>
#include
<ctype.h>
#include
<ac/time.h>
#include
<lber.h>
#include
<ldap.h>
#include
"ldapconfig.h"
static
char
*
binddn
=
LDAPDELETE_BINDDN
;
static
char
*
passwd
=
LDAPDELETE_BIND_CRED
;
static
char
*
base
=
LDAPDELETE_BASE
;
static
char
*
passwd
=
NULL
;
static
char
*
ldaphost
=
LDAPHOST
;
static
int
ldapport
=
LDAP_PORT
;
static
int
not
,
verbose
,
contoper
;
...
...
clients/tools/ldapmodify.c
View file @
92eb657c
...
...
@@ -11,9 +11,8 @@
#include
<sys/stat.h>
#include
<sys/file.h>
#include
<fcntl.h>
#ifndef VMS
#include
<unistd.h>
#endif
/* VMS */
#include
<ac/unistd.h>
#include
<lber.h>
#include
<ldap.h>
...
...
clients/tools/ldapmodrdn.c
View file @
92eb657c
/* ldapmodrdn.c - generic program to modify an entry's RDN using LDAP */
#define DISABLE_BRIDGE
#include
"portable.h"
#include
<stdio.h>
#include
<string.h>
#include
<
ac/
string.h>
#include
<stdlib.h>
#include
<ctype.h>
#include
<ac/time.h>
#include
<lber.h>
#include
<ldap.h>
#include
"ldapconfig.h"
static
char
*
binddn
=
LDAPMODRDN_BINDDN
;
static
char
*
passwd
=
LDAPMODRDN_BIND_CRED
;
static
char
*
base
=
LDAPMODRDN_BASE
;
static
char
*
passwd
=
NULL
;
static
char
*
ldaphost
=
LDAPHOST
;
static
int
ldapport
=
LDAP_PORT
;
static
int
not
,
verbose
,
contoper
;
...
...
clients/tools/ldapsearch.c
View file @
92eb657c
#define DISABLE_BRIDGE
#include
"portable.h"
#include
<stdio.h>
#include
<string.h>
#include
<
ac/
string.h>
#include
<ctype.h>
#include
<ac/time.h>
#include
<lber.h>
#include
<ldap.h>
#include
<ldif.h>
...
...
@@ -52,7 +57,7 @@ char *s;
}
static
char
*
binddn
=
LDAPSEARCH_BINDDN
;
static
char
*
passwd
=
NULL
;
static
char
*
passwd
=
LDAPSEARCH_BIND_CRED
;
static
char
*
base
=
LDAPSEARCH_BASE
;
static
char
*
ldaphost
=
LDAPHOST
;
static
int
ldapport
=
LDAP_PORT
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment