# File checkcase.rb, line 102 def mismatch_depot( depot ) match = false lcdepot = depot.downcase p4.run_depots.each do |line| dname = line.split()[ 1 ] lcdname = dname.downcase if ( lcdname == lcdepot && dname != depot ) match = true @mismatch = "//" + dname break end end match end