CVS update: /ccvs/src/
[email protected] 10 Jun 2005 20:32:12 -0000
| Newsgroups | gmane.comp.version-control.cvs.cvs |
|---|---|
| Message-ID | <[email protected]> |
User: dprice Date: 05/06/10 13:32:12 Modified: /ccvs/src/ ChangeLog, Makefile.in, filesubr.c, ignore.c, import.c, vers_ts.c Log: * filesubr.c, ignore.c, import.c, vers_ts.c: Include "lstat.h". File Changes: Directory: /ccvs/src/ ===================== File [changed]: ChangeLog Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ChangeLog?r1=1.3213&r2=1.3214 Delta lines: +4 -0 ------------------- --- ChangeLog 10 Jun 2005 19:03:19 -0000 1.3213 +++ ChangeLog 10 Jun 2005 20:32:09 -0000 1.3214 @@ -1,5 +1,9 @@ 2005-06-10 Derek Price <[email protected]> + * filesubr.c, ignore.c, import.c, vers_ts.c: Include "lstat.h". + +2005-06-10 Derek Price <[email protected]> + * logmsg.c (logmsg_list_to_args_proc): Add format character for destination tag. (Original patch from Todd Vierling <[email protected]>). File [changed]: Makefile.in Url: https://ccvs.cvshome.org/source/browse/ccvs/src/Makefile.in?r1=1.150&r2=1.151 Delta lines: +10 -11 --------------------- --- Makefile.in 25 May 2005 16:09:04 -0000 1.150 +++ Makefile.in 10 Jun 2005 20:32:09 -0000 1.151 @@ -76,8 +76,8 @@ $(top_srcdir)/m4/dup2.m4 $(top_srcdir)/m4/eealloc.m4 \ $(top_srcdir)/m4/eoverflow.m4 $(top_srcdir)/m4/error.m4 \ $(top_srcdir)/m4/exitfail.m4 $(top_srcdir)/m4/extensions.m4 \ - $(top_srcdir)/m4/fnmatch.m4 $(top_srcdir)/m4/fpending.m4 \ - $(top_srcdir)/m4/ftruncate.m4 \ + $(top_srcdir)/m4/filenamecat.m4 $(top_srcdir)/m4/fnmatch.m4 \ + $(top_srcdir)/m4/fpending.m4 $(top_srcdir)/m4/ftruncate.m4 \ $(top_srcdir)/m4/getcwd-path-max.m4 $(top_srcdir)/m4/getcwd.m4 \ $(top_srcdir)/m4/getdate.m4 $(top_srcdir)/m4/gethostname.m4 \ $(top_srcdir)/m4/getline.m4 $(top_srcdir)/m4/getlogin_r.m4 \ @@ -99,15 +99,14 @@ $(top_srcdir)/m4/mmap-anon.m4 $(top_srcdir)/m4/nanosleep.m4 \ $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/onceonly_2_57.m4 \ $(top_srcdir)/m4/openat.m4 $(top_srcdir)/m4/pagealign_alloc.m4 \ - $(top_srcdir)/m4/path-concat.m4 $(top_srcdir)/m4/pathmax.m4 \ - $(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \ - $(top_srcdir)/m4/quotearg.m4 $(top_srcdir)/m4/readlink.m4 \ - $(top_srcdir)/m4/regex.m4 $(top_srcdir)/m4/rename.m4 \ - $(top_srcdir)/m4/restrict.m4 $(top_srcdir)/m4/rpmatch.m4 \ - $(top_srcdir)/m4/save-cwd.m4 $(top_srcdir)/m4/setenv.m4 \ - $(top_srcdir)/m4/signed.m4 $(top_srcdir)/m4/size_max.m4 \ - $(top_srcdir)/m4/ssize_t.m4 $(top_srcdir)/m4/st_mtim.m4 \ - $(top_srcdir)/m4/stat-macros.m4 $(top_srcdir)/m4/stat.m4 \ + $(top_srcdir)/m4/pathmax.m4 $(top_srcdir)/m4/po.m4 \ + $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/quotearg.m4 \ + $(top_srcdir)/m4/readlink.m4 $(top_srcdir)/m4/regex.m4 \ + $(top_srcdir)/m4/rename.m4 $(top_srcdir)/m4/restrict.m4 \ + $(top_srcdir)/m4/rpmatch.m4 $(top_srcdir)/m4/save-cwd.m4 \ + $(top_srcdir)/m4/setenv.m4 $(top_srcdir)/m4/signed.m4 \ + $(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/ssize_t.m4 \ + $(top_srcdir)/m4/st_mtim.m4 $(top_srcdir)/m4/stat-macros.m4 \ $(top_srcdir)/m4/stdbool.m4 $(top_srcdir)/m4/stdint.m4 \ $(top_srcdir)/m4/stdint_h.m4 $(top_srcdir)/m4/strcase.m4 \ $(top_srcdir)/m4/strdup.m4 $(top_srcdir)/m4/strerror.m4 \ File [changed]: filesubr.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/filesubr.c?r1=1.99&r2=1.100 Delta lines: +1 -0 ------------------- --- filesubr.c 24 May 2005 20:59:01 -0000 1.99 +++ filesubr.c 10 Jun 2005 20:32:09 -0000 1.100 @@ -18,6 +18,7 @@ file system semantics. */ #include "cvs.h" +#include "lstat.h" #include "save-cwd.h" #include "xsize.h" File [changed]: ignore.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/ignore.c?r1=1.54&r2=1.55 Delta lines: +1 -0 ------------------- --- ignore.c 24 May 2005 20:59:01 -0000 1.54 +++ ignore.c 10 Jun 2005 20:32:09 -0000 1.55 @@ -14,6 +14,7 @@ #include "cvs.h" #include "getline.h" +#include "lstat.h" /* * Ignore file section. File [changed]: import.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/import.c?r1=1.171&r2=1.172 Delta lines: +1 -0 ------------------- --- import.c 26 May 2005 17:48:06 -0000 1.171 +++ import.c 10 Jun 2005 20:32:09 -0000 1.172 @@ -22,6 +22,7 @@ */ #include "cvs.h" +#include "lstat.h" #include "save-cwd.h" static char *get_comment (const char *user); File [changed]: vers_ts.c Url: https://ccvs.cvshome.org/source/browse/ccvs/src/vers_ts.c?r1=1.63&r2=1.64 Delta lines: +1 -0 ------------------- --- vers_ts.c 24 May 2005 20:59:02 -0000 1.63 +++ vers_ts.c 10 Jun 2005 20:32:09 -0000 1.64 @@ -12,6 +12,7 @@ */ #include "cvs.h" +#include "lstat.h" #ifdef SERVER_SUPPORT static void time_stamp_server (const char *, Vers_TS *, Entnode *);