summaryrefslogtreecommitdiffstats
path: root/util/mkdef.pl
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2016-05-09 23:50:43 +0200
committerAndy Polyakov <appro@openssl.org>2016-05-10 20:20:21 +0200
commit6d8b3dce7c8feee8aa9107e2ffcc588c782a6113 (patch)
treea2cc4e7ae2f61c481e5e3cdcaab570896161cd53 /util/mkdef.pl
parent981b5bb8efca8a8adbf6a567e3a401c586a694cc (diff)
util/mkdef.pl: omit ordinals from Windows DLLs.
Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'util/mkdef.pl')
-rwxr-xr-xutil/mkdef.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl
index 19bbfee7cc..4d8befe19f 100755
--- 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;
}
}
}