~ubuntu-branches/debian/squeeze/nas/squeeze

« back to all changes in this revision

Viewing changes to lib/audio/OpenSvr.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2008-10-08 01:18:19 UTC
  • mfrom: (4.1.7 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081008011819-wmr4h2w0298k8t7z
Tags: 1.9.1-5
* Fix pending l10n issues. Debconf translations:
* Swedish. Closes: #491766 (thanks to brother@bsnet.se)
* Arabic. Closes: #500437 (thanks to Ossama Khayat)
* Basque. Closes: #500533 (thanks to Piarres Beobide)
* Brazilian Portuguese. Closes: #500973 (thanks to Felipe
  Augusto van de Wiel)
* Many thanks again to Christian Perrier for his i18n efforts,
  co-ordinating the above.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
 * the newly created AuServer back to the caller.
69
69
 */
70
70
AuServer *AuOpenServer (
71
 
        register _AuConst char *server,
 
71
        const char *server,
72
72
        int num_authproto,
73
 
        _AuConst char *authproto,
 
73
        const char *authproto,
74
74
        int num_authdata,
75
 
        _AuConst char *authdata,
 
75
        const char *authdata,
76
76
        char **ret_svrmsg)
77
77
{
78
 
        register AuServer *aud;         /* New AuServer object being created */
79
 
        register int i;
80
 
        _AuConst char *server_name;     /* pointer to server name */
 
78
        AuServer *aud;          /* New AuServer object being created */
 
79
        int i;
 
80
        const char *server_name;        /* pointer to server name */
81
81
        int endian;                     /* to determine which endian. */
82
82
        auConnClientPrefix client;      /* client information */
83
83
        auConnSetupPrefix prefix;       /* prefix information */
369
369
}
370
370
 
371
371
void
372
 
_AuFreeServerStructure(register AuServer *aud)
 
372
_AuFreeServerStructure(AuServer *aud)
373
373
{
374
374
    int                 i;
375
375