﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
1038	pschecklibs in 2.4-cr-0 has mistaken == instead of eq on line 461	Michael Wood-Vasey	eugene	"Line 461 of pschecklibs in ipp-2.4-cr-0 has

        if ($mach == ""i386"") {

but that should be

        if ($mach eq ""i386"") {

This will only cause problems on a Mac PowerPC because it will end up doing the ""right"" thing on Mac Intels, although for the wrong reasons (== does a numeric comparison.  A numeric comparison of two strings first converts each scalar string to a number, which is 0, and then does a numeric comparison so they agree; classic Perl mistakes they I make all the time)."	defect	closed	high		misc	2.4	minor	fixed		jester@…
