diff options
author | terry%mozilla.org <> | 1999-09-23 00:55:56 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-09-23 00:55:56 +0200 |
commit | 650e42208e0b0809c3a2092a0c6c6841439a3fdd (patch) | |
tree | 3a67177f8000a5341c0fb916cd3f4d2ae124f5ca | |
parent | 2b39b1a5e46ed3e37d509a789e8ebc72bce5c2b7 (diff) | |
download | bugzilla-650e42208e0b0809c3a2092a0c6c6841439a3fdd.tar.gz bugzilla-650e42208e0b0809c3a2092a0c6c6841439a3fdd.tar.xz |
Patch by Tom Schutter <tom@platte.com> -- was setting milestone descriptions to NULL instead of ''.
-rw-r--r-- | contrib/gnats2bz.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gnats2bz.pl b/contrib/gnats2bz.pl index 449fb4424..a9b6c9f97 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"; } |