diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2007-10-01 19:21:49 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2007-10-01 19:21:49 +0000 |
| commit | 74b0ce13640ce7a31f24814062eb3e210ff8487e (patch) | |
| tree | df2317ec1d6716c11879b5c8d6a8c37d9d738369 /src/util | |
| parent | ca6be810869ab33553b4cd4f8b26b87f134f34b3 (diff) | |
| download | krb5-74b0ce13640ce7a31f24814062eb3e210ff8487e.tar.gz krb5-74b0ce13640ce7a31f24814062eb3e210ff8487e.tar.xz krb5-74b0ce13640ce7a31f24814062eb3e210ff8487e.zip | |
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
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/def-check.pl | 1 |
1 files changed, 1 insertions, 0 deletions
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"; |
