From 74b0ce13640ce7a31f24814062eb3e210ff8487e Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 1 Oct 2007 19:21:49 +0000 Subject: [PATCH] def-check.pl needs to ignore ordinals in .def file Otherwise, the UNIX build blows out now that the Windows export lists have been updated. Silly consistency checks.... ticket: new git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@20039 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/def-check.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/def-check.pl b/src/util/def-check.pl index 015d81204..a807e6e45 100644 --- a/src/util/def-check.pl +++ b/src/util/def-check.pl @@ -227,6 +227,7 @@ while (! $d->eof()) { next LINE2; } s/[ \t]*//g; + s/@[0-9]+//; my($xconv); if (/PRIVATE/ || /INTERNAL/) { $xconv = "PRIVATE"; -- 2.26.2