merge of 'a88d14e53014d9ab4a5d6e156e3abe2e496284c2'

and 'bcf2bb5bf040195d80e26c4bf643ba0df8386f8a'
This commit is contained in:
zzz
2014-06-29 11:44:37 +00:00
2 changed files with 6 additions and 2 deletions

View File

@@ -513,14 +513,16 @@ public class SU3File {
/** @since 0.9.9 */
private static String dumpTypes() {
StringBuilder buf = new StringBuilder(256);
buf.append("Available signature types:\n");
buf.append("Available signature types (-t):\n");
for (SigType t : EnumSet.allOf(SigType.class)) {
buf.append(" ").append(t).append("\t(code: ").append(t.getCode()).append(')');
if (t.getCode() == DEFAULT_SIG_CODE)
buf.append(" DEFAULT");
if (!t.isAvailable())
buf.append(" UNAVAILABLE");
buf.append('\n');
}
buf.append("Available content types:\n");
buf.append("Available content types (-c):\n");
for (ContentType t : EnumSet.allOf(ContentType.class)) {
buf.append(" ").append(t).append("\t(code: ").append(t.getCode()).append(')');
if (t == DEFAULT_CONTENT_TYPE)

View File

@@ -498,6 +498,8 @@ public class Reseeder {
name.equals(ourB64) ||
f.length() > 10*1024 ||
f.lastModified() < minTime ||
!name.startsWith(ROUTERINFO_PREFIX) ||
!name.endsWith(ROUTERINFO_SUFFIX) ||
!f.isFile()) {
if (_log.shouldLog(Log.WARN))
_log.warn("Skipping " + f);