Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
05a6f29d
Commit
05a6f29d
authored
Apr 30, 2003
by
Kurt Zeilenga
Browse files
Workaround buggy HP compiler
parent
cdd84c34
Changes
1
Hide whitespace changes
Inline
Side-by-side
tests/progs/slapd-modrdn.c
View file @
05a6f29d
...
...
@@ -98,10 +98,11 @@ do_modrdn( char *uri, char *host, int port, char *manager,
{
LDAP
*
ld
=
NULL
;
int
i
;
pid_t
pid
=
getpid
()
;
pid_t
pid
;
char
*
DNs
[
2
];
char
*
rdns
[
2
];
pid
=
getpid
();
DNs
[
0
]
=
entry
;
DNs
[
1
]
=
strdup
(
entry
);
...
...
@@ -164,7 +165,6 @@ do_modrdn( char *uri, char *host, int port, char *manager,
if
(
rc
!=
LDAP_NO_SUCH_OBJECT
)
break
;
continue
;
}
}
fprintf
(
stderr
,
" PID=%ld - Modrdn done.
\n
"
,
(
long
)
pid
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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