[hipl-commit] [trunk] Rev 3878: Add missing #include to allow compilation with --enable-blind, fixes:

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Tue, 9 Mar 2010 18:35:07 +0200

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: Tue Mar 09 17:34:45 2010 +0100
Revision: 3878
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Add missing #include to allow compilation with --enable-blind, fixes:
  hipd/input.c:2184: error: implicit declaration of function 
`hip_host_id_to_hit'

Modified:
  M  hipd/input.c

=== modified file 'hipd/input.c'
--- hipd/input.c        2010-03-09 16:09:38 +0000
+++ hipd/input.c        2010-03-09 16:34:45 +0000
@@ -57,6 +57,10 @@
 #include "lib/performance/performance.h"
 #endif
 
+#ifdef CONFIG_HIP_BLIND
+#include "lib/core/hostid.h"
+#endif
+
 /**
  * Verifies a HMAC.
  *

Other related posts:

  • » [hipl-commit] [trunk] Rev 3878: Add missing #include to allow compilation with --enable-blind, fixes: - Diego Biurrun