Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblongpath-rsync
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liblongpath
liblongpath-rsync
Commits
25e11814
Commit
25e11814
authored
Jan 28, 2005
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use new USE_STAT64_FUNCS define.
parent
5b5f7e3b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
syscall.c
syscall.c
+4
-4
No files found.
syscall.c
View file @
25e11814
...
...
@@ -212,7 +212,7 @@ int do_mkstemp(char *template, mode_t perms)
int
do_stat
(
const
char
*
fname
,
STRUCT_STAT
*
st
)
{
#if
SIZEOF_OFF64_T && HAVE_STRUCT_STAT64
#if
USE_STAT64_FUNCS
return
stat64
(
fname
,
st
);
#else
return
stat
(
fname
,
st
);
...
...
@@ -222,7 +222,7 @@ int do_stat(const char *fname, STRUCT_STAT *st)
int
do_lstat
(
const
char
*
fname
,
STRUCT_STAT
*
st
)
{
#if SUPPORT_LINKS
# if
SIZEOF_OFF64_T && HAVE_STRUCT_STAT64
# if
USE_STAT64_FUNCS
return
lstat64
(
fname
,
st
);
# else
return
lstat
(
fname
,
st
);
...
...
@@ -234,7 +234,7 @@ int do_lstat(const char *fname, STRUCT_STAT *st)
int
do_fstat
(
int
fd
,
STRUCT_STAT
*
st
)
{
#if
SIZEOF_OFF64_T && HAVE_STRUCT_STAT64
#if
USE_STAT64_FUNCS
return
fstat64
(
fd
,
st
);
#else
return
fstat
(
fd
,
st
);
...
...
@@ -243,7 +243,7 @@ int do_fstat(int fd, STRUCT_STAT *st)
OFF_T
do_lseek
(
int
fd
,
OFF_T
offset
,
int
whence
)
{
#if SIZEOF_OFF64_T
&& HAVE_STRUCT_STAT64
#if SIZEOF_OFF64_T
off64_t
lseek64
();
return
lseek64
(
fd
,
offset
,
whence
);
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment