mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
09.07.2006 df247182e88d817ae961b603f9d24552c5b98a8d
Fix a bug in ldapsearch that caused it to write two blank lines between each
entry instead of just one.

OpenDS Issue Number: 1069
1 files modified
2 ■■■ changed files
opends/src/server/org/opends/server/tools/LDAPSearch.java 2 ●●● patch | view | raw | blame | history
opends/src/server/org/opends/server/tools/LDAPSearch.java
@@ -272,7 +272,7 @@
                   responseMessage.getSearchResultEntryProtocolOp();
              StringBuilder sb = new StringBuilder();
              toLDIF(searchEntryOp, sb, wrapColumn, typesOnly);
              out.println(sb.toString());
              out.print(sb.toString());
              matchingEntries++;
              break;