Use time_t for time values throughout rather than assuming it's long

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17799 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
CaS 2003-10-08 08:58:18 +00:00
parent c3b3d5f095
commit 4532063027

View file

@ -824,7 +824,7 @@ static unsigned long prb_used = 0;
static unsigned long prb_size = 0;
typedef struct {
struct in_addr sin;
long when;
time_t when;
} prb_type;
static prb_type **prb = 0;
@ -936,7 +936,7 @@ prb_del(struct in_addr *p)
* thirty minutes (as long as we have sent as probe in that time).
*/
static void
prb_tim(long when)
prb_tim(time_t when)
{
int i;