Patch from Steven Scholz, fix some warnings

This commit is contained in:
Glenn L McGrath 2003-10-09 11:38:45 +00:00
parent 99825960c1
commit a55d72bbb4
3 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,6 @@ int chgrp_main(int argc, char **argv)
long gid;
int recursiveFlag;
int retval = EXIT_SUCCESS;
char *p;
recursiveFlag = bb_getopt_ulflags(argc, argv, "R");

View File

@ -48,7 +48,7 @@
#include <asm/byteorder.h>
#if __BYTE_ORDER == __BIG_ENDIAN
#if (__BYTE_ORDER == __BIG_ENDIAN) && !defined(__USE_XOPEN)
#define __USE_XOPEN
#endif

View File

@ -33,12 +33,13 @@
#include <stdlib.h>
#include <unistd.h>
#include <signal.h>
#include "busybox.h"
static const int RFC_868_BIAS = 2208988800UL;
static void socket_timeout(void)
static void socket_timeout(int sig)
{
bb_error_msg_and_die("timeout connecting to time server");
}