Commit 893f36e8 authored by gabrielC's avatar gabrielC Committed by Cedric Roux

bug fixes from Fujitsu (bug 29)

```-------------------------------------------------------
bug 29

Ttile:
FDD should be TDD.

Bug Location:
  switch (oai_emulation.info.frame_type[0]) {
  case FDD:
    frame_type = "FDD";
    break;

  case TDD:
    frame_type = "FDD";
    break;
  }
```

-------------------------------------------------------
parent 899d1506
......@@ -1486,7 +1486,7 @@ void init_ocm(void)
break;
case TDD:
frame_type = "FDD";
frame_type = "TDD";
break;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment