[hipl-commit] [tiny] Rev 3744: Fixed checkheaders target.

  • From: Tim Just <tim.just@xxxxxxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 30 Mar 2010 17:45:13 +0300

Committer: Tim Just <tim.just@xxxxxxxxxxxxxx>
Date: 30/03/2010 at 17:45:13
Revision: 3744
Revision-id: tim.just@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: tiny

Log:
  Fixed checkheaders target.
  
  Added missing includes to header files.

Modified:
  M  hipd/pkt_handling.h
  M  modules/update/hipd/update_legacy.h

=== modified file 'hipd/pkt_handling.h'
--- hipd/pkt_handling.h 2010-03-25 10:47:44 +0000
+++ hipd/pkt_handling.h 2010-03-30 14:44:49 +0000
@@ -10,6 +10,9 @@
 #ifndef HIP_HIPD_MODULARIZATION_H
 #define HIP_HIPD_MODULARIZATION_H
 
+#include <stdint.h>
+#include "lib/core/protodefs.h"
+
 int hip_register_handle_function(const uint8_t packet_type,
                                  const uint32_t ha_state,
                                  int (*handle_function)(const uint8_t 
packet_type,

=== modified file 'modules/update/hipd/update_legacy.h'
--- modules/update/hipd/update_legacy.h 2010-03-19 14:29:54 +0000
+++ modules/update/hipd/update_legacy.h 2010-03-30 14:44:49 +0000
@@ -6,6 +6,9 @@
 #ifndef HIP_HIPD_UPDATE_LEGACY_H
 #define HIP_HIPD_UPDATE_LEGACY_H
 
+#include <stdint.h>
+#include "lib/core/protodefs.h"
+
 int hip_build_locators_old(struct hip_common *msg, uint32_t spi);
 
 void hip_empty_oppipdb_old(void);

Other related posts:

  • » [hipl-commit] [tiny] Rev 3744: Fixed checkheaders target. - Tim Just