Clarify a comment.
authorGerald Combs <gerald@wireshark.org>
Tue, 22 Mar 2011 21:07:00 +0000 (21:07 -0000)
committerGerald Combs <gerald@wireshark.org>
Tue, 22 Mar 2011 21:07:00 +0000 (21:07 -0000)
svn path=/trunk/; revision=36270

file.c

diff --git a/file.c b/file.c
index becec4631508ba6e7cbc104cc00a18370fedd920..72c1f3958e98fb4dfbdf524d427df4a052a85ac6 100644 (file)
--- a/file.c
+++ b/file.c
@@ -139,7 +139,11 @@ static void ref_time_packets(capture_file *cf);
 #define FRAME_DATA_CHUNK_SIZE   1024
 
 
-/* this callback mechanism should possibly be replaced by the g_signal_...() stuff (if I only would know how :-) */
+/*
+ * We could probably use g_signal_...() instead of the callbacks below but that
+ * would require linking our CLI programs to libgobject and creating an object
+ * instance for the signals.
+ */
 typedef struct {
   cf_callback_t cb_fct;
   gpointer user_data;