summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-06-23 11:07:15 -0400
committerDave Brolley <brolley@redhat.com>2009-06-23 11:07:15 -0400
commitf75b6811dee35832309e55a9e3455c40d4c13437 (patch)
treea4b0c9bab84c84c863b99bb993fcbb7f5c19b339 /tapsets.cxx
parentd6454850dd3c9d74b700924b56378c4c9ab9fa57 (diff)
parente89118955d1e9f6f442e9c0f2e918ce9bf9a8529 (diff)
downloadsystemtap-steved-f75b6811dee35832309e55a9e3455c40d4c13437.tar.gz
systemtap-steved-f75b6811dee35832309e55a9e3455c40d4c13437.tar.xz
systemtap-steved-f75b6811dee35832309e55a9e3455c40d4c13437.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Diffstat (limited to 'tapsets.cxx')
-rw-r--r--tapsets.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tapsets.cxx b/tapsets.cxx
index 694905d9..3017e203 100644
--- a/tapsets.cxx
+++ b/tapsets.cxx
@@ -702,7 +702,7 @@ dwarf_builder::probe_table::probe_table(string& mark_name, systemtap_session & s
elf = dwfl_module_getelf (dw->module, &bias);
Elf_Scn *probe_scn = NULL;
- dwfl_assert ("getshstrndx", elf_getshstrndx (elf, &shstrndx));
+ dwfl_assert ("getshdrstrndx", elf_getshdrstrndx (elf, &shstrndx));
have_probes = false;
@@ -726,7 +726,7 @@ dwarf_builder::probe_table::probe_table(string& mark_name, systemtap_session & s
elf = dwarf_getelf (dwfl_module_getdwarf (dw->module, &bias));
if (! elf)
return;
- dwfl_assert ("getshstrndx", elf_getshstrndx (elf, &shstrndx));
+ dwfl_assert ("getshdrstrndx", elf_getshdrstrndx (elf, &shstrndx));
probe_scn = NULL;
while ((probe_scn = elf_nextscn (elf, probe_scn)))
{
@@ -3707,7 +3707,7 @@ symbol_table::prepare_section_rejection(Dwfl_Module *mod)
if (!elf)
return;
- if (elf_getshstrndx(elf, &shstrndx) != 0)
+ if (elf_getshdrstrndx (elf, &shstrndx) != 0)
return;
while ((scn = elf_nextscn(elf, scn)) != NULL)
{