Displaying 5 results from an estimated 5 matches for "human_readable".
Did you mean:
_human_readable
2015 Nov 28
0
[PATCH] ignore-non-existing-directory: add variant of ignore-non-existing
...+++++++++++++++++++++++
4 files changed, 54 insertions(+), 6 deletions(-)
create mode 100644 testsuite/ignore-non-existing-directory.test
diff --git a/generator.c b/generator.c
index 3a4504f..6cafce6 100644
--- a/generator.c
+++ b/generator.c
@@ -57,6 +57,7 @@ extern int update_only;
extern int human_readable;
extern int ignore_existing;
extern int ignore_non_existing;
+extern int ignore_non_existing_dirs;
extern int want_xattr_optim;
extern int inplace;
extern int append_mode;
@@ -1323,22 +1324,28 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
return;
}
- if (...
2016 Jan 16
0
[PATCH v2, resend] ignore-non-existing-directory: add variant of ignore-non-existing
...+++++++++++++++++++++++
4 files changed, 75 insertions(+), 6 deletions(-)
create mode 100644 testsuite/ignore-non-existing-directory.test
diff --git a/generator.c b/generator.c
index 3a4504f..6cafce6 100644
--- a/generator.c
+++ b/generator.c
@@ -57,6 +57,7 @@ extern int update_only;
extern int human_readable;
extern int ignore_existing;
extern int ignore_non_existing;
+extern int ignore_non_existing_dirs;
extern int want_xattr_optim;
extern int inplace;
extern int append_mode;
@@ -1323,22 +1324,28 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
return;
}
- if (...
2015 Nov 28
0
[PATCH v2] ignore-non-existing-directory: add variant of ignore-non-existing
...+++++++++++++++++++++++
4 files changed, 75 insertions(+), 6 deletions(-)
create mode 100644 testsuite/ignore-non-existing-directory.test
diff --git a/generator.c b/generator.c
index 3a4504f..6cafce6 100644
--- a/generator.c
+++ b/generator.c
@@ -57,6 +57,7 @@ extern int update_only;
extern int human_readable;
extern int ignore_existing;
extern int ignore_non_existing;
+extern int ignore_non_existing_dirs;
extern int want_xattr_optim;
extern int inplace;
extern int append_mode;
@@ -1323,22 +1324,28 @@ static void recv_generator(char *fname, struct file_struct *file, int ndx,
return;
}
- if (...
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
...rintf ("%" PRIi64, i) < 0) {
- perror ("printf");
- exit (EXIT_FAILURE);
- }
+ if (printf ("%" PRIi64, i) < 0)
+ error (EXIT_FAILURE, errno, "printf");
}
static void
@@ -690,10 +667,8 @@ output_int64_size (int64_t size)
human_readable ((uintmax_t) size, buf, hopts, 1, 1));
}
- if (r < 0) {
- perror ("printf");
- exit (EXIT_FAILURE);
- }
+ if (r < 0)
+ error (EXIT_FAILURE, errno, "printf");
}
static void
@@ -701,10 +676,8 @@ output_int64_perms (int64_t i)
{
next_field ();
/* c...
2007 Sep 22
0
rsync build on IA64 using icc
...remark #1419: external declaration in primary source file
extern int modify_window;
^
util.c(30): remark #1419: external declaration in primary source file
extern int relative_paths;
^
util.c(31): remark #1419: external declaration in primary source file
extern int human_readable;
^
util.c(32): remark #1419: external declaration in primary source file
extern unsigned int module_dirlen;
^
util.c(33): remark #1419: external declaration in primary source file
extern mode_t orig_umask;
^
util.c(34): remark #1419: externa...