2c6e551b2e
Resolves: RHEL-70151 - Heap Buffer Overflow in Rsync due to Improper Checksum Length Handling Resolves: RHEL-70159 - Info Leak via Uninitialized Stack Contents Resolves: RHEL-70203 - rsync server leaks arbitrary client files Resolves: RHEL-72500 - Path traversal vulnerability in rsync Resolves: RHEL-72501 - --safe-links option bypass leads to path traversal Resolves: RHEL-71658 - Race Condition in rsync Handling Symbolic Links Resolves: RHEL-71293 - Build rsync with --with-rrsync
24 lines
686 B
Diff
24 lines
686 B
Diff
diff --git a/Makefile.in b/Makefile.in
|
|
index 3cde955..06232f1 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -106,6 +106,9 @@ rsync$(EXEEXT): $(OBJS)
|
|
rrsync: support/rrsync
|
|
cp -p $(srcdir)/support/rrsync rrsync
|
|
|
|
+rrsync.1.md: support/rrsync.1.md
|
|
+ cp -p $(srcdir)/support/rrsync.1.md rrsync.1.md
|
|
+
|
|
$(OBJS): $(HEADERS)
|
|
$(CHECK_OBJS): $(HEADERS)
|
|
tls.o xattrs.o: lib/sysxattrs.h
|
|
@@ -269,7 +269,7 @@ rsyncd.conf.5: rsyncd.conf.5.md md-convert version.h Makefile
|
|
@$(srcdir)/maybe-make-man rsyncd.conf.5.md
|
|
|
|
rrsync.1: support/rrsync.1.md md-convert Makefile
|
|
- @$(srcdir)/maybe-make-man support/rrsync.1.md
|
|
+ @$(srcdir)/maybe-make-man rrsync.1.md
|
|
|
|
.PHONY: clean
|
|
clean: cleantests
|