make linux_renameat2 args consistent with linux_renameat
Use 'dfd' consistently for a directory fd.
This commit is contained in:
parent
39803421e2
commit
d50f11cc69
@ -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, \
|
||||
|
@ -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, \
|
||||
|
@ -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
|
||||
);
|
||||
|
@ -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, \
|
||||
|
Loading…
Reference in New Issue
Block a user