diff dbutil.c @ 666:0ad95abf8d3c

check for fork() and not __uClinux__
author Mike Frysinger <vapier@gentoo.org>
date Sun, 08 Apr 2012 01:50:52 -0400
parents 16af1decaf4c
children fc7ae88e63b3
line wrap: on
line diff
--- a/dbutil.c	Sun Apr 08 02:06:54 2012 -0400
+++ b/dbutil.c	Sun Apr 08 01:50:52 2012 -0400
@@ -443,7 +443,7 @@
 		return DROPBEAR_FAILURE;
 	}
 
-#ifdef __uClinux__
+#ifndef HAVE_FORK
 	pid = vfork();
 #else
 	pid = fork();