STEP06 ? add dissect_kerberos_AD_AP_OPTIONS
[metze/wireshark/wip.git] / epan / register.c
index d655e64eb69e4277e657a23a66bf07832cc3b006..f672b8a6bc20eae0511d5ece148b8ea5bfb69c99 100644 (file)
@@ -5,14 +5,13 @@
  * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
- * SPDX-License-Identifier: GPL-2.0+
+ * SPDX-License-Identifier: GPL-2.0-or-later
  */
 
-#include "register.h"
+#include "register-int.h"
 #include "ws_attributes.h"
 
 #include <glib.h>
-#include <wsutil/glib-compat.h>
 #include "epan/dissectors/dissectors.h"
 
 static const char *cur_cb_name = NULL;
@@ -61,7 +60,7 @@ register_all_protocols(register_cb cb, gpointer cb_data)
     }
     g_thread_join(rapw_thread);
     if (cb && !called_back) {
-            cb(RA_REGISTER, "Registration finished", cb_data);
+        cb(RA_REGISTER, "finished", cb_data);
     }
 }
 
@@ -97,7 +96,7 @@ register_all_protocol_handoffs(register_cb cb, gpointer cb_data)
     }
     g_thread_join(raphw_thread);
     if (cb && !called_back) {
-            cb(RA_HANDOFF, "Registration finished", cb_data);
+        cb(RA_HANDOFF, "finished", cb_data);
     }
     g_async_queue_unref(register_cb_done_q);
 }