Blame view

buildroot/buildroot-2016.08.1/package/curlftpfs/0004-fix-musl-build-off-t.patch 1.14 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
  Use off_t instead of __off_t
  
  __off_t is an internal C library type, which shouldn't be used by
  applications. It is not defined by the musl C library, so use the
  public off_t type instead.
  
  Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  
  Index: b/ftpfs.c
  ===================================================================
  --- a/ftpfs.c
  +++ b/ftpfs.c
  @@ -687,7 +687,7 @@
   	return ftpfs_getattr(path, &sbuf);
   }
   
  -static __off_t test_size(const char* path)
  +static off_t test_size(const char* path)
   {
   	struct stat sbuf;
   	int err = ftpfs_getattr(path, &sbuf);
  @@ -950,7 +950,7 @@
   
     /* fix openoffice problem, truncating exactly to file length */
     
  -  __off_t size = (long long int)test_size(path); 
  +  off_t size = (long long int)test_size(path); 
     DEBUG(1, "ftpfs_truncate: %s check filesize=%lld
  ", path, (long long int)size);
     
     if (offset == size)  
  @@ -978,7 +978,7 @@
     }
     /* fix openoffice problem, truncating exactly to file length */
     
  -  __off_t size = test_size(path); 
  +  off_t size = test_size(path); 
     DEBUG(1, "ftpfs_ftruncate: %s check filesize=%lld
  ", path, (long long int)size);
     
     if (offset == size)