~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to libtransmission/utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2007-11-22 12:37:14 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071122123714-b0xi4zxhgk5qwbmc
Tags: 0.93.dfsg-2
* Added missing build-dependency (python).
* debian/control: switching to Homepage, Vcs-Browser and Vcs-Svn official
  fields (Leo "costela" Antunes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: utils.h 3473 2007-10-20 15:17:36Z charles $
 
2
 * $Id: utils.h 3649 2007-10-30 18:35:04Z charles $
3
3
 *
4
4
 * Copyright (c) 2005-2007 Transmission authors and contributors
5
5
 *
50
50
 * Create a directory and any needed parent directories.
51
51
 * Note that the string passed in must be writable!
52
52
 **********************************************************************/
53
 
int tr_mkdirp( char * path, int permissions );
 
53
int tr_mkdirp( const char * path, int permissions );
54
54
 
55
55
int tr_mkdir( const char * path, int permissions );
56
56