NetBSD-1.6.2_STABLE. Gets rid of a parse error when only one argument is given to HDN_WARN, which leaves us with "fprintf(fp, arg, )". This may be a failure of the compiler on this platform to properly do varargs macros, but the changes are noops and gets it building there.
13 lines
375 B
Text
13 lines
375 B
Text
$NetBSD: patch-ab,v 1.1 2004/09/16 16:12:57 he Exp $
|
|
|
|
--- hdn_crypto.c.orig Thu Jun 24 03:03:49 2004
|
|
+++ hdn_crypto.c
|
|
@@ -36,7 +36,7 @@ void hdn_crypto_srandom (char *pass)
|
|
}
|
|
else
|
|
{
|
|
- HDN_WARN ("Error: Invalid pass. Using default seed instead");
|
|
+ HDN_WARN ("Error: Invalid pass. Using default seed instead", "");
|
|
}
|
|
|
|
srandom (seed);
|