From 608a6c6772495b5f8973f1fe1e07876d80e4c191 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Wed, 22 Sep 1999 15:55:56 +0000 Subject: [PATCH] Patch by Tom Schutter -- was setting milestone descriptions to NULL instead of ''. --- webtools/bugzilla/contrib/gnats2bz.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webtools/bugzilla/contrib/gnats2bz.pl b/webtools/bugzilla/contrib/gnats2bz.pl index 449fb44245d..a9b6c9f9701 100644 --- a/webtools/bugzilla/contrib/gnats2bz.pl +++ b/webtools/bugzilla/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"; }