b629b66276
- Synced patches with native openssl-1.0.1e-38.fc21 - Enable ECC support (RHBZ #1037919) - Fixes CVE-2013-6450 (RHBZ #1047844) - Fixes CVE-2013-4353 (RHBZ #1049062) - Fixes CVE-2013-6449 (RHBZ #1045444)
16 lines
160 B
Bash
Executable File
16 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
# Fixes patch from upstream tracker view
|
|
gawk '
|
|
BEGIN {
|
|
dir=""
|
|
}
|
|
/^Index: openssl\// {
|
|
dir = $2
|
|
}
|
|
/^(---|\+\+\+)/ {
|
|
$2 = dir
|
|
}
|
|
{
|
|
print
|
|
}'
|