~ubuntu-branches/ubuntu/trusty/cctools/trusty

« back to all changes in this revision

Viewing changes to parrot/src/pfs_service_chirp.cc

  • Committer: Package Import Robot
  • Author(s): Michael Hanke
  • Date: 2012-06-15 08:30:02 UTC
  • mfrom: (9.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20120615083002-r5nq7iowcv6bm35n
Tags: 3.5.0-1
* New upstream release.
* Remove obsolete patches 'missing_cflags' and 'python_compat'. They have
  been merged upstream.
* Remove DM-upload flag, not needed anymore.
* Bumped Standards-version to 3.9.3, no changes necessary.
* Do not install the new 'apps' binaries. They carry language-specific
  filename extensions, and upstream was asked if renaming is possible. Until
  this is decided they won't be installed to avoid changing the API twice.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
#include "chirp_global.h"
14
14
#include "stringtools.h"
15
15
#include "debug.h"
16
 
#include "xmalloc.h"
 
16
#include "xxmalloc.h"
17
17
#include "macros.h"
18
18
#include "hash_table.h"
19
19
}
59
59
static void chirp_dircache_begin( const char *path )
60
60
{
61
61
        chirp_dircache_invalidate();
62
 
        chirp_dircache_path = xstrdup(path);
 
62
        chirp_dircache_path = xxstrdup(path);
63
63
}
64
64
 
65
65
static void chirp_dircache_insert( const char *name, struct chirp_stat *info, void *arg )