Skip to content
Snippets Groups Projects
Commit 75ee1d83 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Update tools to print ID's using "%ld" instead of "%lu".

parent e4a589d9
No related branches found
No related tags found
No related merge requests found
......@@ -664,7 +664,7 @@ print_entry(
case 'e': /* id2entry - key is dnid, data is entry */
if ( key != NULL ) {
SAFEMEMCPY( (char *) &id, key->dptr, sizeof(ID) );
fprintf( fp, "%s %lu\n", klabel, id );
fprintf( fp, "%s %ld\n", klabel, id );
}
if ( data != NULL ) {
if ( dlabel ) {
......
......@@ -176,7 +176,7 @@ main( int argc, char **argv )
}
if ( linep == NULL ) {
fprintf( stderr, "entry %lu has no dn\n",
fprintf( stderr, "entry %ld has no dn\n",
id );
} else {
key.dptr = dn_normalize_case( val );
......@@ -257,7 +257,7 @@ main( int argc, char **argv )
}
if ( linep == NULL ) {
fprintf( stderr, "entry %lu has no dn\n",
fprintf( stderr, "entry %ld has no dn\n",
id );
} else {
if ( (dn = dn_parent( be, val ))
......
......@@ -176,7 +176,7 @@ main( int argc, char **argv )
}
if ( linep == NULL ) {
fprintf( stderr, "entry %lu has no dn\n",
fprintf( stderr, "entry %ld has no dn\n",
id );
} else {
key.dptr = dn_normalize_case( val );
......@@ -257,7 +257,7 @@ main( int argc, char **argv )
}
if ( linep == NULL ) {
fprintf( stderr, "entry %lu has no dn\n",
fprintf( stderr, "entry %ld has no dn\n",
id );
} else {
if ( (dn = dn_parent( be, val ))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment