Use regular category with custom post types

Found this code, that makes it able to assign regular categories to custom types but now my importer doesnt assign them, but I think ill be able to fix this.

add_action( 'init', 'wpse6098_init', 100 ); // 100 so the post type has been registered
function wpse6098_init()
{
    register_taxonomy_for_object_type( 'category', 'product' );
}