~ubuntu-branches/ubuntu/precise/transmission/precise

« back to all changes in this revision

Viewing changes to third-party/miniupnp/minixml.c

  • Committer: Bazaar Package Importer
  • Author(s): Leo Costela
  • Date: 2009-07-25 20:20:23 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (2.1.19 sid)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20090725202023-9xmfycsfotr430nv
* debian/rules: patch before configure
* debian/patches: add patch to not build libevent, regardless of
  linking (really, really closes: #537868)
* debian/changelog: fix dates

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
/* parseatt : used to parse the argument list
36
36
 * return 0 (false) in case of success and -1 (true) if the end
37
37
 * of the xmlbuffer is reached. */
38
 
int parseatt(struct xmlparser * p)
 
38
static int parseatt(struct xmlparser * p)
39
39
{
40
40
        const char * attname;
41
41
        int attnamelen;
106
106
 
107
107
/* parseelt parse the xml stream and
108
108
 * call the callback functions when needed... */
109
 
void parseelt(struct xmlparser * p)
 
109
static void parseelt(struct xmlparser * p)
110
110
{
111
111
        int i;
112
112
        const char * elementname;