~rdoering/ubuntu/intrepid/erlang/fix-535090

« back to all changes in this revision

Viewing changes to lib/megaco/src/binary/megaco_binary_name_resolver_v1.erl

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2007-05-01 16:57:10 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070501165710-2sapk0hp2gf3o0ip
Tags: 1:11.b.4-2ubuntu1
* Merge with Debian Unstable. Remaining changes:
  - Add -fno-stack-protector to fix broken crypto_drv.
* DebianMaintainerField update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
-module(megaco_binary_name_resolver_v1).
23
23
 
24
24
-include_lib("megaco/src/engine/megaco_message_internal.hrl").
25
 
-include_lib("megaco/src/engine/megaco_internal.hrl").
 
25
-include_lib("megaco/src/app/megaco_internal.hrl").
26
26
 
27
27
-define(LOWER(Char),
28
28
        if
554
554
        "nt"      -> encode_nt(Scope, Item);
555
555
        "rtp"     -> encode_rtp(Scope, Item);
556
556
        "tdmc"    -> encode_tdmc(Scope, Item);
557
 
        ""        -> encode_native(Scope, Item);
558
557
        "swb"     -> encode_swb(Scope, Item)
559
558
    end.
560
559