summaryrefslogtreecommitdiff
path: root/ui/export_object_dicom.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-24 15:51:59 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2012-10-24 15:51:59 +0000
commitee2a04416d29627db07aa49c7a2c5b5eef097ee0 (patch)
tree6fe10e5b97cbf17decf174adce159fefa139d2a8 /ui/export_object_dicom.c
parent936082acb529b4e73b4d8d4f9fb8e13fb569efc1 (diff)
downloadwireshark-ee2a04416d29627db07aa49c7a2c5b5eef097ee0.tar.gz
Fix indent and add Modelines info for new common ui source file(s)
svn path=/trunk/; revision=45762
Diffstat (limited to 'ui/export_object_dicom.c')
-rw-r--r--ui/export_object_dicom.c56
1 files changed, 34 insertions, 22 deletions
diff --git a/ui/export_object_dicom.c b/ui/export_object_dicom.c
index 9077b9665c..2d6c90842e 100644
--- a/ui/export_object_dicom.c
+++ b/ui/export_object_dicom.c
@@ -39,31 +39,43 @@
gboolean
eo_dicom_packet(void *tapdata, packet_info *pinfo, epan_dissect_t *edt _U_,
- const void *data)
+ const void *data)
{
- export_object_list_t *object_list = tapdata;
- const dicom_eo_t *eo_info = data;
- export_object_entry_t *entry;
+ export_object_list_t *object_list = tapdata;
+ const dicom_eo_t *eo_info = data;
+ export_object_entry_t *entry;
- if (eo_info) { /* We have data waiting for us */
- /*
- Don't copy any data. dcm_export_create_object() is already g_malloc() the items
- Still, the values will be freed when the export Object window is closed.
- Therefore, strings and buffers must be copied
- */
- entry = g_malloc(sizeof(export_object_entry_t));
+ if (eo_info) { /* We have data waiting for us */
+ /*
+ Don't copy any data. dcm_export_create_object() is already g_malloc() the items
+ Still, the values will be freed when the export Object window is closed.
+ Therefore, strings and buffers must be copied
+ */
+ entry = g_malloc(sizeof(export_object_entry_t));
- entry->pkt_num = pinfo->fd->num;
- entry->hostname = eo_info->hostname;
- entry->content_type = eo_info->content_type;
- entry->filename = g_strdup(g_path_get_basename(eo_info->filename));
- entry->payload_len = eo_info->payload_len;
- entry->payload_data = eo_info->payload_data;
+ entry->pkt_num = pinfo->fd->num;
+ entry->hostname = eo_info->hostname;
+ entry->content_type = eo_info->content_type;
+ entry->filename = g_strdup(g_path_get_basename(eo_info->filename));
+ entry->payload_len = eo_info->payload_len;
+ entry->payload_data = eo_info->payload_data;
- object_list_add_entry(object_list, entry);
+ object_list_add_entry(object_list, entry);
- return TRUE; /* State changed - window should be redrawn */
- } else {
- return FALSE; /* State unchanged - no window updates needed */
- }
+ return TRUE; /* State changed - window should be redrawn */
+ } else {
+ return FALSE; /* State unchanged - no window updates needed */
+ }
}
+/*
+ * Editor modelines
+ *
+ * Local Variables:
+ * c-basic-offset: 4
+ * tab-width: 8
+ * indent-tabs-mode: nil
+ * End:
+ *
+ * ex: set shiftwidth=4 tabstop=8 expandtab:
+ * :indentSize=4:tabSize=8:noTabs=true:
+ */