|
|
@@ -885,12 +885,13 @@ ai_format_generate(PyObject *distobj, int do_id,
|
|
|
// Description: Generates a datagram containing the message necessary
|
|
|
// to create a new database distributed object from the AI.
|
|
|
//
|
|
|
-// First Pass is to only incldue required values(with Defaults).
|
|
|
+// First Pass is to only incldue required values
|
|
|
+// (with Defaults).
|
|
|
////////////////////////////////////////////////////////////////////
|
|
|
Datagram DCClass::
|
|
|
-ai_database_generate_context(int context_id,
|
|
|
- int parent_id, int zone_id,
|
|
|
- CHANNEL_TYPE database_server_id, CHANNEL_TYPE from_channel_id) const
|
|
|
+ai_database_generate_context(
|
|
|
+ int context_id, int parent_id, int zone_id,
|
|
|
+ CHANNEL_TYPE database_server_id, CHANNEL_TYPE from_channel_id) const
|
|
|
{
|
|
|
DCPacker packer;
|
|
|
packer.RAW_PACK_CHANNEL(database_server_id);
|
|
|
@@ -906,8 +907,7 @@ ai_database_generate_context(int context_id,
|
|
|
int num_fields = get_num_inherited_fields();
|
|
|
for (int i = 0; i < num_fields; ++i) {
|
|
|
DCField *field = get_inherited_field(i);
|
|
|
- if (field->is_required() && field->as_molecular_field() == NULL)
|
|
|
- {
|
|
|
+ if (field->is_required() && field->as_molecular_field() == NULL) {
|
|
|
packer.begin_pack(field);
|
|
|
packer.pack_default_value();
|
|
|
packer.end_pack();
|