Fix wpa_supplicant build for uClinux

The code contains a bogus #ifdef for uClinux building. [Bug 286]
This commit is contained in:
Ihar Hrachyshka 2009-01-05 20:32:04 +02:00 committed by Jouni Malinen
parent 2c04820d80
commit 7ee6258f7c

View file

@ -78,9 +78,9 @@ int os_mktime(int year, int month, int day, int hour, int min, int sec,
int os_daemonize(const char *pid_file) int os_daemonize(const char *pid_file)
{ {
#ifdef __unclinux #ifdef __uClinux__
return -1; return -1;
#else /* __uclinux */ #else /* __uClinux__ */
if (daemon(0, 0)) { if (daemon(0, 0)) {
perror("daemon"); perror("daemon");
return -1; return -1;
@ -95,7 +95,7 @@ int os_daemonize(const char *pid_file)
} }
return -0; return -0;
#endif /* __uclinux */ #endif /* __uClinux__ */
} }