make linux_renameat2 args consistent with linux_renameat

Use 'dfd' consistently for a directory fd.
This commit is contained in:
emaste 2019-09-11 12:58:06 +00:00
parent 39803421e2
commit d50f11cc69
4 changed files with 8 additions and 8 deletions

View File

@ -550,8 +550,8 @@
315 AUE_NULL STD { int linux_sched_getattr(l_pid_t pid, \
void *attr, l_uint size, l_uint flags); }
; Linux 3.15:
316 AUE_NULL STD { int linux_renameat2(l_int oldfd, \
const char *oldname, l_int newfd, \
316 AUE_NULL STD { int linux_renameat2(l_int olddfd, \
const char *oldname, l_int newdfd, \
const char *newname, unsigned int flags); }
; Linux 3.17:
317 AUE_NULL STD { int linux_seccomp(l_uint op, l_uint flags, \

View File

@ -610,8 +610,8 @@
352 AUE_NULL STD { int linux_sched_getattr(l_pid_t pid, \
void *attr, l_uint size, l_uint flags); }
; Linux 3.15:
353 AUE_NULL STD { int linux_renameat2(l_int oldfd, \
const char *oldname, l_int newfd, \
353 AUE_NULL STD { int linux_renameat2(l_int olddfd, \
const char *oldname, l_int newdfd, \
const char *newname, unsigned int flags); }
; Linux 3.17:
354 AUE_NULL STD { int linux_seccomp(l_uint op, l_uint flags, \

View File

@ -1459,9 +1459,9 @@
}
276 AUE_NULL STD {
int linux_renameat2(
l_int oldfd,
l_int olddfd,
const char *oldname,
l_int newfd,
l_int newdfd,
const char *newname,
unsigned int flags
);

View File

@ -619,8 +619,8 @@
352 AUE_NULL STD { int linux_sched_getattr(l_pid_t pid, \
void *attr, l_uint size, l_uint flags); }
; Linux 3.15:
353 AUE_NULL STD { int linux_renameat2(l_int oldfd, \
const char *oldname, l_int newfd, \
353 AUE_NULL STD { int linux_renameat2(l_int olddfd, \
const char *oldname, l_int newdfd, \
const char *newname, unsigned int flags); }
; Linux 3.17:
354 AUE_NULL STD { int linux_seccomp(l_uint op, l_uint flags, \