Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 218672
b: refs/heads/master
c: 7f6c1bd
h: refs/heads/master
v: v3
  • Loading branch information
Arnaldo Carvalho de Melo committed Oct 26, 2010
1 parent 5b11eda commit 15418fe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a64fa198ba1cd232871710c37476e006ed5516ed
refs/heads/master: 7f6c1bd50d73d12f8b4ea09edb4515997f6527f5
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ def clear_term():
machine_to_id = {
'x86_64': audit.MACH_86_64,
'alpha' : audit.MACH_ALPHA,
'armeb' : audit.MACH_ARMEB,
'ia64' : audit.MACH_IA64,
'ppc' : audit.MACH_PPC,
'ppc64' : audit.MACH_PPC64,
Expand All @@ -46,6 +45,10 @@ def clear_term():
'i586' : audit.MACH_X86,
'i686' : audit.MACH_X86,
}
try:
machine_to_id['armeb'] = audit.MACH_ARMEB
except:
pass
machine_id = machine_to_id[os.uname()[4]]
except:
if not audit_package_warned:
Expand Down

0 comments on commit 15418fe

Please sign in to comment.