diff options
-rw-r--r-- | tapset/ChangeLog | 5 | ||||
-rw-r--r-- | tapset/aux_syscalls.stp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index e8d223cc..c65cf3a8 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,8 @@ +2007-08-08 Frank Ch. Eigler <fche@elastic.org> + + From "Zhaolei" zhaolei@cn.fujitsu.com: + * aux_syscalls.stp (_sockopt_level_str): Correct level=1 string. + 2007-08-03 Martin Hunt <hunt@redhat.com> * aux_syscalls.stp (__get_compat_argv): Add cast. diff --git a/tapset/aux_syscalls.stp b/tapset/aux_syscalls.stp index 05c2a15a..e566c53f 100644 --- a/tapset/aux_syscalls.stp +++ b/tapset/aux_syscalls.stp @@ -1395,7 +1395,7 @@ function _sockopt_optname_str(opt) { /* `man 2 setsockopt` for more information */ function _sockopt_level_str(l) { if(l==0) return "IP" - if(l==1) return "ICMP" + if(l==1) return "SOL_SOCKET" # not ICMP if(l==2) return "IGMP" if(l==3) return "GGP" if(l==4) return "IP-ENCAP" |