From 75d309f9b7dc8be64ac2d44a5ca08589858862c9 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Mon, 1 Oct 2007 23:55:38 +0000 Subject: [PATCH] pull up r20039 from trunk r20039@cathode-dark-space: raeburn | 2007-10-01 15:21:49 -0400 ticket: new subject: 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: 5791 version_fixed: 1.6.3 git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@20077 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 17327df24..a35e5c987 100644 --- a/src/util/def-check.pl +++ b/src/util/def-check.pl @@ -221,6 +221,7 @@ while (! $d->eof()) { next LINE2; } s/[ \t]*//g; + s/@[0-9]+//; my($xconv); if (/PRIVATE/ || /INTERNAL/) { $xconv = "PRIVATE"; -- 2.26.2