[hipl-commit] [trunk] Rev 4576: cosmetics: Use '#ifdef' instead of '#if defined' for consistency.

  • From: Diego Biurrun <diego@xxxxxxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Sun, 23 May 2010 13:31:37 +0300

Committer: Diego Biurrun <diego@xxxxxxxxxx>
Date: 23/05/2010 at 13:31:37
Revision: 4576
Revision-id: diego@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  cosmetics: Use '#ifdef' instead of '#if defined' for consistency.

Modified:
  M  hipd/input.c

=== modified file 'hipd/input.c'
--- hipd/input.c        2010-05-22 12:37:40 +0000
+++ hipd/input.c        2010-05-23 10:31:04 +0000
@@ -1622,7 +1622,7 @@
 
     /************************************************/
 
-#if defined(CONFIG_HIP_RVS)
+#ifdef CONFIG_HIP_RVS
     /********** REG_REQUEST **********/
     /* This part should only be executed at server offering rvs or relay
      * services.
@@ -1633,7 +1633,7 @@
 
 #endif
 
-#if defined(CONFIG_HIP_RVS)
+#ifdef CONFIG_HIP_RVS
     if (hip_relay_get_status() != HIP_RELAY_OFF) {
         hip_build_param_reg_from(r2, i2_saddr, i2_info->src_port);
     }

Other related posts:

  • » [hipl-commit] [trunk] Rev 4576: cosmetics: Use '#ifdef' instead of '#if defined' for consistency. - Diego Biurrun