diff options
-rw-r--r-- | tapset/ChangeLog | 4 | ||||
-rw-r--r-- | tapset/aux_syscalls.stp | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index d1ce0270..c87c89f0 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,7 @@ +2007-09-13 Martin Hunt <hunt@redhat.com> + + * aux_syscalls.stp: Replace get_user calls with __stp_get_user. + 2007-09-06 Zhaolei <zhaolei@cn.fujitsu.com> * aux_syscalls.stp (_stp_sockaddr_str): Fix memory access error diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index b037d67c..ccbea9a3 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -628,7 +628,7 @@ function __get_argv:string(a:long, first:long) argv++; while (argv != NULL) { - if (get_user (vstr, argv)) + if (__stp_get_user (vstr, argv)) break; if (vstr == NULL) @@ -686,7 +686,7 @@ function __get_compat_argv:string(a:long, first:long) argv++; while (argv != NULL) { - if (get_user (vstr, argv)) + if (__stp_get_user (vstr, argv)) break; if (vstr == NULL) |