diff options
author | timeless%mac.com <> | 2001-10-04 09:06:54 +0200 |
---|---|---|
committer | timeless%mac.com <> | 2001-10-04 09:06:54 +0200 |
commit | 061d059d7bf9bd3b787e1fd22b222212ad38e5ae (patch) | |
tree | 1d39da2f5dbdf7a857c4ddedd239fc5cbfb85c25 /enter_bug.cgi | |
parent | d09ce429a585a2919359056f6b8d7f0f1c6ecc9c (diff) | |
download | bugzilla-061d059d7bf9bd3b787e1fd22b222212ad38e5ae.tar.gz bugzilla-061d059d7bf9bd3b787e1fd22b222212ad38e5ae.tar.xz |
Bugzilla Bug 69533 enter_bug.cgi does not auto-detect HP-UX as OS
patch by gary@radionics.com r=zach
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-x | enter_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi index cd50cded7..63218059b 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -206,7 +206,7 @@ sub pickos { /Mozilla.*\(.*;.*; Linux.*\)/ && do {return "Linux";}; /Mozilla.*\(.*;.*; SunOS 5.*\)/ && do {return "Solaris";}; /Mozilla.*\(.*;.*; SunOS.*\)/ && do {return "SunOS";}; - /Mozilla.*\(.*;.*; SunOS.*\)/ && do {return "SunOS";}; + /Mozilla.*\(.*;.*; HP-UX.*\)/ && do {return "HP-UX";}; /Mozilla.*\(.*;.*; BSD\/OS.*\)/ && do {return "BSDI";}; /Mozilla.*\(.*;.*; FreeBSD.*\)/ && do {return "FreeBSD";}; /Mozilla.*\(Win16.*\)/ && do {return "Windows 3.1";}; |