Skip to content

Commit

Permalink
The 'file' command in the 'update' program didn't work correctly.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.code.sf.net/p/dnsjava/code/trunk@1626 c76caeb1-94fd-44dd-870f-0c9d92034fc1
  • Loading branch information
bwelling committed Feb 4, 2011
1 parent f10d5df commit 233b863
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Changelog
@@ -1,3 +1,7 @@
2/3/2011
- The 'file' command in the 'update' program didn't work correctly.
(reported by Olafur Gudmundsson <ogud@ogud.com>)

9/15/2010
- Change the Android name server detection mechanism to avoid false
positives. (patch from Ulf Dittmer <ulf@ulfdittmer.com>)
Expand Down
2 changes: 1 addition & 1 deletion update.java
Expand Up @@ -448,7 +448,7 @@ record = Record.newRecord(name, Type.ANY, DClass.ANY, 0);
else
is = new FileInputStream(s);
istreams.add(0, is);
inputs.add(new BufferedReader(new InputStreamReader(is)));
inputs.add(0, new BufferedReader(new InputStreamReader(is)));
}
catch (FileNotFoundException e) {
print(s + " not found");
Expand Down

0 comments on commit 233b863

Please sign in to comment.