Skip to content

Commit

Permalink
Support pkey and pkey_sequence attrs in layer_flush.
Browse files Browse the repository at this point in the history
  • Loading branch information
Timur Sufiev committed Nov 20, 2012
1 parent c23f990 commit dc1a819
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/ows/ows_layer.c
Expand Up @@ -669,5 +669,17 @@ void ows_layer_flush(ows_layer * l, FILE * output)
list_flush(l->include_items, output);
fprintf(output, "\n");
}

if(l->pkey) {
fprintf(output, "pkey: ");
list_flush(l->pkey, output);
fprintf(output, "\n");
}

if(l->pkey_sequence) {
fprintf(output, "pkey_sequence: ");
list_flush(l->pkey_sequence, output);
fprintf(output, "\n");
}
}
#endif

0 comments on commit dc1a819

Please sign in to comment.