Mercurial > dropbear
comparison session.h @ 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 | 983a817f8e41 |
comparison
equal
deleted
inserted
replaced
666:0ad95abf8d3c | 667:fc7ae88e63b3 |
---|---|
216 char * addrstring; | 216 char * addrstring; |
217 | 217 |
218 /* The resolved remote address, used for lastlog etc */ | 218 /* The resolved remote address, used for lastlog etc */ |
219 char *remotehost; | 219 char *remotehost; |
220 | 220 |
221 #ifndef HAVE_FORK | 221 #ifdef USE_VFORK |
222 pid_t server_pid; | 222 pid_t server_pid; |
223 #endif | 223 #endif |
224 | 224 |
225 }; | 225 }; |
226 | 226 |