SOLR-350: fix libDir => sharedLib xml writing error

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@673430 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan McKinley 2008-07-02 16:14:51 +00:00
parent 6b251c9685
commit 7919e2e4fe
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ public class MultiCore
XML.escapeAttributeValue(adminPath, writer);
writer.write('\'');
if (this.libDir != null) {
writer.write(" libDir='");
writer.write(" sharedLib='");
XML.escapeAttributeValue(libDir, writer);
writer.write('\'');
}