~ubuntu-branches/ubuntu/precise/libfs/precise-security

« back to all changes in this revision

Viewing changes to src/FSOpenServ.c

  • Committer: Bazaar Package Importer
  • Author(s): Julien Cristau
  • Date: 2008-05-25 00:57:27 UTC
  • mfrom: (1.1.2 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20080525005727-2wdap6qvbuh95bmb
Tags: 2:1.0.1-1
* New upstream release.
* Install the upstream ChangeLog.
* Add upstream URL and missing copyright holders and licenses to
  debian/copyright, based on upstream's new COPYING file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
 
74
74
FSServer   *_FSHeadOfServerList = NULL;
75
75
 
76
 
void _FSFreeServerStructure(svr)
77
 
    FSServer   *svr;
 
76
void _FSFreeServerStructure(FSServer *svr)
78
77
{
79
78
    if (svr->server_name)
80
79
        FSfree(svr->server_name);
88
87
}
89
88
 
90
89
static
91
 
void OutOfMemory(svr, setup)
92
 
    FSServer   *svr;
93
 
    char       *setup;
 
90
void OutOfMemory(
 
91
    FSServer    *svr,
 
92
    char        *setup)
94
93
{
95
94
 
96
95
    _FSDisconnectServer(svr->trans_conn);
105
104
 */
106
105
 
107
106
FSServer   *
108
 
FSOpenServer(server)
109
 
    char       *server;
 
107
FSOpenServer(char *server)
110
108
{
111
109
    FSServer   *svr;
112
110
    int         i;