* Fix problem with special case route targets ('remote_host') The init_route() function will leave &netlist untouched for get_special_addr() routes ("remote_host" being one of them). netlist is on stack, contains random garbage, and netlist.len will not be 0 - thus, random stack data is copied from netlist.data[] until the route_list is full.
14 lines
355 B
Text
14 lines
355 B
Text
$NetBSD: patch-ag,v 1.2 2010/11/30 08:50:17 adam Exp $
|
|
|
|
--- easy-rsa/2.0/pkitool.orig 2010-11-04 19:29:02.000000000 +0000
|
|
+++ easy-rsa/2.0/pkitool
|
|
@@ -142,6 +142,9 @@ CA="ca"
|
|
PKCS11_MODULE_PATH="dummy"
|
|
PKCS11_PIN="dummy"
|
|
|
|
+[ -n "$GREP" ] || GREP=grep
|
|
+[ -n "$OPENSSL" ] || OPENSSL=openssl
|
|
+
|
|
# Process options
|
|
while [ $# -gt 0 ]; do
|
|
case "$1" in
|