~ubuntu-branches/ubuntu/natty/lftp/natty

« back to all changes in this revision

Viewing changes to src/filemode.h

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2006-06-05 13:17:03 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060605131703-q5ehgd52jmyn6crf
Tags: 3.4.7-1
* new upstream release from 2006-05-18
* updated Standards-Version to 3.7.2
* tls glibc double-free problem fixed since 3.4.x
  (closes: Bug#326914)
* gnutls handshake problem fixed since 3.4.x
  (closes: Bug#327643)
* segfault problem fixed (closes: Bug#336408)
* using gnutls 1.3 (closes: Bug#369197)
* made lftp-config-dns-inet6_before_inet patch nicer

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef FILEMODE_H_
 
2
 
 
3
# if HAVE_CONFIG_H
 
4
#  include <config.h>
 
5
# endif
 
6
 
 
7
# include <sys/types.h>
 
8
 
 
9
# ifndef PARAMS
 
10
#  if defined PROTOTYPES || (defined __STDC__ && __STDC__)
 
11
#   define PARAMS(Args) Args
 
12
#  else
 
13
#   define PARAMS(Args) ()
 
14
#  endif
 
15
# endif
 
16
 
 
17
#ifdef __cplusplus
 
18
extern "C" {
 
19
#endif
 
20
void mode_string PARAMS ((mode_t mode, char *str));
 
21
#ifdef __cplusplus
 
22
};
 
23
#endif
 
24
 
 
25
#endif