- fixed a bug in the utimbuf test
authorAndrew Tridgell <tridge@samba.org>
Wed, 25 Mar 1998 11:26:20 +0000 (11:26 +0000)
committerAndrew Tridgell <tridge@samba.org>
Wed, 25 Mar 1998 11:26:20 +0000 (11:26 +0000)
- rebuilt prototypes

configure.in

index 412d2cd..2d48d00 100644 (file)
@@ -61,9 +61,7 @@ echo no)
 echo $ac_n "checking for utimbuf ... $ac_c"
 AC_TRY_COMPILE([#include <sys/types.h>
 #include <utime.h>],
-[int set_modtime(char *fname,time_t modtime)
-{  struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = modtime;
-   return utime(fname,&tbuf); }],
+[struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; return utime("foo.c",&tbuf);],
 echo yes;AC_DEFINE(HAVE_UTIMBUF), 
 echo no)