mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
s/getopt() != -1/getopt() != EOF/
This commit is contained in:
parent
e3d164d10e
commit
79cb528e7e
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ main( int argc, char **argv )
|
|||
always_addvals = NULL;
|
||||
basedn = NULL;
|
||||
|
||||
while (( c = getopt( argc, argv, "dorva:b:f:h:i:" )) != -1 ) {
|
||||
while (( c = getopt( argc, argv, "dorva:b:f:h:i:" )) != EOF ) {
|
||||
switch( c ) {
|
||||
case 'd':
|
||||
#ifdef LDAP_DEBUG
|
||||
|
|
|
|||
Loading…
Reference in a new issue