~ubuntu-branches/ubuntu/maverick/dbus/maverick-proposed

« back to all changes in this revision

Viewing changes to tools/dbus-send.c

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-27 13:06:32 UTC
  • mfrom: (1.1.23 upstream)
  • Revision ID: james.westby@ubuntu.com-20100927130632-bqs145trvchd2lmf
Tags: 1.4.0-0ubuntu1
* New upstream release
 - Fixes https://bugs.freedesktop.org/show_bug.cgi?id=17754 Race condition in protected_change_timeout
 - Requested by various upstream KDE developers http://lists.kde.org/?t=128514970000004&r=1&w=2

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
#include <dbus/dbus.h>
28
28
 
 
29
#ifndef HAVE_STRTOLL
 
30
#undef strtoll
 
31
#define strtoll mystrtoll
 
32
#include "strtoll.c"
 
33
#endif
 
34
 
 
35
#ifndef HAVE_STRTOULL
 
36
#undef strtoull
 
37
#define strtoull mystrtoull
 
38
#include "strtoull.c"
 
39
#endif
 
40
 
 
41
#ifdef DBUS_WINCE
 
42
#ifndef strdup
 
43
#define strdup _strdup
 
44
#endif
 
45
#endif
 
46
 
29
47
#include "dbus-print-message.h"
30
48
 
31
49
static const char *appname;