summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfche <fche>2007-08-08 15:26:35 +0000
committerfche <fche>2007-08-08 15:26:35 +0000
commit827aabf84e119cbd85198e57eeedb787003d8268 (patch)
tree58bc3693e25b29fc5de7167dbd44a6b47c57b5e8
parent3f99432cc11977a4345c881bed3aa60a1a614238 (diff)
downloadsystemtap-steved-827aabf84e119cbd85198e57eeedb787003d8268.tar.gz
systemtap-steved-827aabf84e119cbd85198e57eeedb787003d8268.tar.xz
systemtap-steved-827aabf84e119cbd85198e57eeedb787003d8268.zip
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.
-rw-r--r--tapset/ChangeLog5
-rw-r--r--tapset/aux_syscalls.stp2
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"