From: Kevin Koch Date: Thu, 12 Apr 2007 15:48:12 +0000 (+0000) Subject: Make case of username in config.xml and presence test match what's passed to GETOPTS! X-Git-Tag: krb5-1.7-alpha1~1163 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=334006cae563bc507a001a9fca9319bfc305d304;p=krb5.git Make case of username in config.xml and presence test match what's passed to GETOPTS! Update doc for new config structure in config xml. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19431 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/windows/build/BKWconfig.xml b/src/windows/build/BKWconfig.xml index 31294ea66..654396685 100644 --- a/src/windows/build/BKWconfig.xml +++ b/src/windows/build/BKWconfig.xml @@ -41,7 +41,7 @@ - + > diff --git a/src/windows/build/bkw-automation.html b/src/windows/build/bkw-automation.html index d463df3a6..c6ebd1e28 100644 --- a/src/windows/build/bkw-automation.html +++ b/src/windows/build/bkw-automation.html @@ -306,18 +306,12 @@ Default is bkw.pl.log.
  - <CommandLine> + <Config> - <Directories> - - - - - - <src path ="C:\bkw" /> + <src value ="C:\bkw" /> diff --git a/src/windows/build/bkw.pl b/src/windows/build/bkw.pl index ea7c192ac..ac8259af9 100644 --- a/src/windows/build/bkw.pl +++ b/src/windows/build/bkw.pl @@ -270,8 +270,8 @@ sub main { if (! ($rverb =~ /skip/)) { local $len = 0; - if (exists $odr->{USERNAME}->{value}) { - $len = length $odr->{USERNAME}->{value}; + if (exists $odr->{username}->{value}) { + $len = length $odr->{username}->{value}; } if ($len < 1) { die "Fatal -- you won't get far accessing the repository without specifying a username.";