Mercurial > dropbear
comparison session.h @ 666:0ad95abf8d3c
check for fork() and not __uClinux__
author | Mike Frysinger <vapier@gentoo.org> |
---|---|
date | Sun, 08 Apr 2012 01:50:52 -0400 |
parents | 00eca37e47e8 |
children | fc7ae88e63b3 |
comparison
equal
deleted
inserted
replaced
665:4d9511f98462 | 666:0ad95abf8d3c |
---|---|
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 #ifdef __uClinux__ | 221 #ifndef HAVE_FORK |
222 pid_t server_pid; | 222 pid_t server_pid; |
223 #endif | 223 #endif |
224 | 224 |
225 }; | 225 }; |
226 | 226 |