File tree 6 files changed +5
-6
lines changed
6 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,10 @@ extern int do_compression;
38
38
extern int inplace ;
39
39
extern int append_mode ;
40
40
extern int write_batch ;
41
- extern int xfersum_type ;
42
41
extern int protocol_version ;
43
42
extern int raw_argc , cooked_argc ;
44
43
extern char * * raw_argv , * * cooked_argv ;
45
44
extern char * batch_name ;
46
- extern const char * checksum_choice ;
47
- extern const char * compress_choice ;
48
45
#ifdef ICONV_OPTION
49
46
extern char * iconv_opt ;
50
47
#endif
Original file line number Diff line number Diff line change 3
3
* `id -G` on Linux, but it's too hard to find a portable equivalent.
4
4
*
5
5
* Copyright (C) 2002 Martin Pool
6
- * Copyright (C) 2003-2019 Wayne Davison
6
+ * Copyright (C) 2003-2020 Wayne Davison
7
7
*
8
8
* This program is free software; you can redistribute it and/or modify
9
9
* it under the terms of the GNU General Public License version 3 as
Original file line number Diff line number Diff line change 1
1
/* Inline functions for rsync.
2
2
*
3
- * Copyright (C) 2007-2019 Wayne Davison
3
+ * Copyright (C) 2007-2020 Wayne Davison
4
4
*
5
5
* This program is free software; you can redistribute it and/or modify
6
6
* it under the terms of the GNU General Public License as published by
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ sys.path = ['packaging'] + sys.path
13
13
14
14
from pkglib import *
15
15
16
+ os .environ ['LESS' ] = 'mqeiXR' ; # Make sure that -F is turned off and -R is turned on.
16
17
dest = os .environ ['HOME' ] + '/samba-rsync-ftp'
17
18
ORIGINAL_PATH = os .environ ['PATH' ]
18
19
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ our %long_opt = (
111
111
' list-only' => 0,
112
112
' log-file' => $only eq ' r' ? -1 : 3,
113
113
' log-format' => 1,
114
+ ' max-alloc' => 1,
114
115
' max-delete' => 1,
115
116
' max-size' => 1,
116
117
' min-size' => 1,
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ int preserve_xattrs = 0;
33
33
int preserve_perms = 0 ;
34
34
int preserve_executability = 0 ;
35
35
int open_noatime = 0 ;
36
- size_t max_alloc = 1024 * 1024 * 1024 ;
36
+ size_t max_alloc = 1024 * 1024 * 1024 ; /* max_alloc is needed when combined with util2.o */
37
37
char * partial_dir ;
38
38
char * module_dir ;
39
39
filter_rule_list daemon_filter_list ;
You can’t perform that action at this time.
0 commit comments