summaryrefslogtreecommitdiff
path: root/apps/netutils
diff options
context:
space:
mode:
Diffstat (limited to 'apps/netutils')
-rw-r--r--apps/netutils/dhcpc/dhcpc.c4
-rwxr-xr-xapps/netutils/thttpd/thttpd_cgi.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/netutils/dhcpc/dhcpc.c b/apps/netutils/dhcpc/dhcpc.c
index dc80988bb..b5551c6f1 100644
--- a/apps/netutils/dhcpc/dhcpc.c
+++ b/apps/netutils/dhcpc/dhcpc.c
@@ -492,7 +492,7 @@ int dhcpc_request(void *handle, struct dhcpc_state *presult)
* Then loop and send the DISCOVER command again.
*/
- else if (*get_errno_ptr() != EAGAIN)
+ else if (errno != EAGAIN)
{
/* An error other than a timeout was received -- error out */
@@ -570,7 +570,7 @@ int dhcpc_request(void *handle, struct dhcpc_state *presult)
* 3 times).
*/
- else if (*get_errno_ptr() != EAGAIN)
+ else if (errno != EAGAIN)
{
/* An error other than a timeout was received */
diff --git a/apps/netutils/thttpd/thttpd_cgi.c b/apps/netutils/thttpd/thttpd_cgi.c
index ee126795a..3d2eb57b8 100755
--- a/apps/netutils/thttpd/thttpd_cgi.c
+++ b/apps/netutils/thttpd/thttpd_cgi.c
@@ -152,7 +152,7 @@ static inline void cgi_semtake(void)
* awakened by a signal.
*/
- ASSERT(*get_errno_ptr() == EINTR);
+ ASSERT(errno == EINTR);
}
}