projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
981b5bb
)
util/mkdef.pl: omit ordinals from Windows DLLs.
author
Andy Polyakov
<appro@openssl.org>
Mon, 9 May 2016 21:50:43 +0000
(23:50 +0200)
committer
Andy Polyakov
<appro@openssl.org>
Tue, 10 May 2016 18:20:21 +0000
(20:20 +0200)
Reviewed-by: Stephen Henson <steve@openssl.org>
util/mkdef.pl
patch
|
blob
|
history
diff --git
a/util/mkdef.pl
b/util/mkdef.pl
index 19bbfee7ccb11a45c4ec3fad1367cbce8809be56..4d8befe19f6dccdf093d3c522b7ea3b390cc7cbf 100755
(executable)
--- a/
util/mkdef.pl
+++ b/
util/mkdef.pl
@@
-1325,11
+1325,11
@@
EOF
print OUT $symline;
$symvtextcount += length($symline) - 2;
} elsif($v) {
- printf OUT " %s%-39s
@%-8d
DATA\n",
- ($W32)?"":"_",$s2
,$n
;
+ printf OUT " %s%-39s DATA\n",
+ ($W32)?"":"_",$s2;
} else {
- printf OUT " %s%
-39s @%d
\n",
- ($W32)?"":"_",$s2
,$n
;
+ printf OUT " %s%
s
\n",
+ ($W32)?"":"_",$s2;
}
}
}