From: terry%mozilla.org <> Date: Wed, 22 Sep 1999 22:55:56 +0000 (+0000) Subject: Patch by Tom Schutter -- was setting milestone descriptions to NULL... X-Git-Tag: bugzilla-2.8~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=650e42208e0b0809c3a2092a0c6c6841439a3fdd;p=thirdparty%2Fbugzilla.git Patch by Tom Schutter -- was setting milestone descriptions to NULL instead of ''. --- diff --git a/contrib/gnats2bz.pl b/contrib/gnats2bz.pl index 449fb44245..a9b6c9f970 100644 --- a/contrib/gnats2bz.pl +++ b/contrib/gnats2bz.pl @@ -743,7 +743,7 @@ sub write_non_bugs_tables { " product, description, milestoneurl, disallownew\n"; print DATA ") values (\n"; print DATA - " $product, $description, 'NULL', 0\n"; + " $product, $description, '', 0\n"; print DATA ");\n"; print DATA "\ninsert into components (\n"; @@ -751,7 +751,7 @@ sub write_non_bugs_tables { " value, program, initialowner, initialqacontact, description\n"; print DATA ") values (\n"; print DATA - " $product, $product, $initialowner, 'NULL', $description\n"; + " $product, $product, $initialowner, '', $description\n"; print DATA ");\n"; }