diff dbutil.c @ 667:fc7ae88e63b3

Rename HAVE_FORK to USE_VFORK It makes it a bit more obvious why there's a test there since HAVE_FORK is the normal case.
author Matt Johnston <matt@ucc.asn.au>
date Mon, 09 Apr 2012 20:35:13 +0800
parents 0ad95abf8d3c
children 9a5438271556 2202e854d187
line wrap: on
line diff
--- a/dbutil.c	Sun Apr 08 01:50:52 2012 -0400
+++ b/dbutil.c	Mon Apr 09 20:35:13 2012 +0800
@@ -443,7 +443,7 @@
 		return DROPBEAR_FAILURE;
 	}
 
-#ifndef HAVE_FORK
+#ifdef USE_VFORK
 	pid = vfork();
 #else
 	pid = fork();