mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-25 00:02:53 -05:00
Don't ignore attribute list when -S is specified.
This commit is contained in:
parent
4abcfca8f5
commit
97db0eb716
1 changed files with 1 additions and 1 deletions
|
|
@ -620,7 +620,7 @@ main( int argc, char **argv )
|
|||
filtpattern = strdup( argv[optind++] );
|
||||
}
|
||||
|
||||
if ( (argv[optind] != NULL) && (sortattr == NULL || *sortattr == '\0') ) {
|
||||
if ( argv[optind] != NULL ) {
|
||||
attrs = &argv[optind];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue