~ubuntu-branches/ubuntu/utopic/vsftpd/utopic-proposed

« back to all changes in this revision

Viewing changes to sysstr.h

  • Committer: Package Import Robot
  • Author(s): Daniel Llewellyn (Bang Communications)
  • Date: 2013-05-08 14:08:53 UTC
  • mfrom: (2.6.1 squeeze)
  • Revision ID: package-import@ubuntu.com-20130508140853-ahhuki963v9fuuns
Tags: 3.0.2-1ubuntu2
* debian/patches/13-disable-clone-newpid.patch
  - patch to remove CLONE_NEWPID syscall
    see: https://bugzilla.novell.com/show_bug.cgi?id=786024#c38
    Fixes LP: #1160372

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
  kVSFSysStrOpenReadOnly = 1
22
22
};
23
23
int str_open(const struct mystr* p_str, const enum EVSFSysStrOpenMode mode);
24
 
int str_create_append(const struct mystr* p_str);
25
24
int str_create(const struct mystr* p_str);
26
 
int str_create_overwrite(const struct mystr* p_str);
 
25
int str_create_exclusive(const struct mystr* p_str);
27
26
int str_chmod(const struct mystr* p_str, unsigned int mode);
28
27
int str_stat(const struct mystr* p_str, struct vsf_sysutil_statbuf** p_ptr);
29
28
int str_lstat(const struct mystr* p_str, struct vsf_sysutil_statbuf** p_ptr);