This patch just moves an ifdef so sstrsep() doesn't get compiled if HAVE_FORK 
isn't defined.
-- 
Johan Gill, [EMAIL PROTECTED]

Index: apps/speed.c
===================================================================
RCS file: /home/johane/openssl/cvs/openssl/apps/speed.c,v
retrieving revision 1.129
diff -u -r1.129 speed.c
--- apps/speed.c        16 Jul 2005 12:37:28 -0000      1.129
+++ apps/speed.c        2 Nov 2005 14:43:11 -0000
@@ -2522,6 +2522,7 @@
        results[alg][run_no]=((double)count)/time_used*lengths[run_no];
        }
 
+#ifdef HAVE_FORK
 static char *sstrsep(char **string, const char *delim)
     {
     char isdelim[256];
@@ -2553,7 +2554,6 @@
     return token;
     }
 
-#ifdef HAVE_FORK
 static int do_multi(int multi)
        {
        int n;

Reply via email to