https://bugzilla.novell.com/show_bug.cgi?id=225610 Summary: openswan: aes choosing Product: openSUSE 10.2 Version: RC 5 Platform: x86 OS/Version: Linux Status: NEW Severity: Enhancement Priority: P5 - None Component: Network AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: jengelh@gmx.de QAContact: qa@suse.de openswan_37_aes_insmod.dif contains: - modprobe -qv aes + modprobe -qv aes || \ + case `uname -m` in + x86_64) modprobe -qv aes-x86_64 ;; + i?86) modprobe -qv aes-i586 ;; + esac But should not it be: case `uname -m` in (x86_64) modprobe -q aes-x86_64;; (i586) modprobe -q aes-i586;; esac || modprobe -qv aes; So that "aes" is fallback rather than default? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.