~damg/ubuntu/quantal/asterisk/LP1097687

« back to all changes in this revision

Viewing changes to formats/format_gsm.c

  • Committer: Bazaar Package Importer
  • Author(s): Jean-Michel Dault
  • Date: 2010-02-16 14:08:54 UTC
  • mfrom: (1.2.5 upstream) (8.3.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100216140854-rb2godspb9lduazl
Tags: 1:1.6.2.2-1ubuntu1
* Merge from Debian: security update
  * Changes:
  - debian/control: Change Maintainer
  - debian/control: Removed Uploaders field.
  - debian/control: Removed Debian Vcs-Svn entry and replaced with
      ubuntu-voip Vcs-Bzr, to reflect divergence in packages.
  - debian/asterisk.init : chown /dev/dahdi
  - debian/backports/hardy : add file
  - debian/backports/asterisk.init.hardy : add file

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
#include "asterisk.h"
27
27
 
28
 
ASTERISK_FILE_VERSION(__FILE__, "$Revision: 153616 $")
 
28
ASTERISK_FILE_VERSION(__FILE__, "$Revision: 233694 $")
29
29
 
30
30
#include "asterisk/mod_format.h"
31
31
#include "asterisk/module.h"
169
169
        return ast_format_unregister(gsm_f.name);
170
170
}       
171
171
 
172
 
AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Raw GSM data");
 
172
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Raw GSM data",
 
173
        .load = load_module,
 
174
        .unload = unload_module,
 
175
        .load_pri = 10,
 
176
);