diff options
| author | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-03-03 18:03:10 +0100 | 
|---|---|---|
| committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-03-03 18:03:10 +0100 | 
| commit | 81aa4f3ffa87d1fba88f6f2cbfafd525fcc14c3b (patch) | |
| tree | 5761c728e8c14604936b143d4b14748986788893 /src/irmd | |
| parent | 0a58878e6c499e0757a11c842cc1d0ac6ffb4ab8 (diff) | |
| download | ouroboros-81aa4f3ffa87d1fba88f6f2cbfafd525fcc14c3b.tar.gz ouroboros-81aa4f3ffa87d1fba88f6f2cbfafd525fcc14c3b.zip | |
include: Fixed missing 'struct', renamed dif_info
common.h: dif_info renamed to dif_config
          missing struct fixed
Diffstat (limited to 'src/irmd')
| -rw-r--r-- | src/irmd/main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/irmd/main.c b/src/irmd/main.c index 0c69de2f..262b737c 100644 --- a/src/irmd/main.c +++ b/src/irmd/main.c @@ -50,7 +50,7 @@ static void destroy_ipcp(rina_name_t * name)  }  static void bootstrap_ipcp(rina_name_t * name, -                           struct dif_info * info) +                           struct dif_config * conf)  {           LOG_MISSING;  } @@ -114,7 +114,7 @@ int main()                                  break;                          case IRM_BOOTSTRAP_IPCP:                                  bootstrap_ipcp(msg->name, -                                               msg->info); +                                               msg->conf);                                  break;                          case IRM_ENROLL_IPCP:                                  enroll_ipcp(msg->name, | 
