aboutsummaryrefslogtreecommitdiff
path: root/libbb/inet_common.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-06-18 20:20:07 +0000
committerRob Landley <rob@landley.net>2006-06-18 20:20:07 +0000
commitea224be6aa8fed5486376d3021a4cb911e935106 (patch)
tree38d6c5d2d53841e3f4e2702521e3b03235c51017 /libbb/inet_common.c
parent14d7065ef1eb836d20e13bc25d1b13f0e76185ac (diff)
downloadbusybox-w32-ea224be6aa8fed5486376d3021a4cb911e935106.tar.gz
busybox-w32-ea224be6aa8fed5486376d3021a4cb911e935106.tar.bz2
busybox-w32-ea224be6aa8fed5486376d3021a4cb911e935106.zip
skip_whitespace() shouldn't claim its return value is const, it doesn't know
that and callers wind up typecasting it back.
Diffstat (limited to 'libbb/inet_common.c')
-rw-r--r--libbb/inet_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/inet_common.c b/libbb/inet_common.c
index c02c732f3..0051edbdc 100644
--- a/libbb/inet_common.c
+++ b/libbb/inet_common.c
@@ -8,13 +8,13 @@
8 * 8 *
9 */ 9 */
10 10
11#include "libbb.h"
11#include "inet_common.h" 12#include "inet_common.h"
12#include <stdio.h> 13#include <stdio.h>
13#include <errno.h> 14#include <errno.h>
14#include <stdlib.h> 15#include <stdlib.h>
15#include <string.h> 16#include <string.h>
16#include <unistd.h> 17#include <unistd.h>
17#include "libbb.h"
18 18
19#ifdef DEBUG 19#ifdef DEBUG
20# include <resolv.h> 20# include <resolv.h>