~ubuntu-branches/ubuntu/wily/sflphone/wily

« back to all changes in this revision

Viewing changes to daemon/libs/iax2/winpoop.h

  • Committer: Package Import Robot
  • Author(s): Whoopie
  • Date: 2012-03-22 10:29:10 UTC
  • mfrom: (4.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20120322102910-tb8hugi2su1tguwh
Tags: 1.0.2-1ubuntu1
* Apply some upstream patches to fix FTBFS (LP: #913018):
  - debian/patches/05_glib_includes.patch: fix glib includes.
  - debian/patches/06_use_XkbKeycodeToKeysym.patch: use 
    XkbKeycodeToKeysym instead of (deprecated) XKeycodeToKeysym.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* 
 
1
/*
2
2
 * Functions Windows doesn't have... but should
3
3
 * Copyright(C) 2001, Linux Support Services, Inc.
4
4
 *
32
32
        a1 &= 0xff;
33
33
        a2 &= 0xff;
34
34
        a3 &= 0xff;
35
 
        a4 &= 0xff; 
 
35
        a4 &= 0xff;
36
36
        saddr = (a1 << 24) | (a2 << 16) | (a3 << 8) | a4;
37
37
        inp->s_addr = htonl(saddr);
38
38
        return 1;