From 0356db5dccfe159bb5d849004d64d20d4387369d Mon Sep 17 00:00:00 2001
From: intrigeri <intrigeri@boum.org>
Date: Sat, 12 Aug 2017 22:10:29 +0000
Subject: [PATCH] Documentation: bandwidthlimit for the dup handler needs to be
 given in KB/s, and not (as wrongly advertised previously) in Kbit/s.

Closes: #7603
---
 ChangeLog              | 3 +++
 examples/example.dup   | 4 ++--
 handlers/dup.helper.in | 4 ++--
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 418686c..1b8a633 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -68,6 +68,9 @@ version 1.0.2  -- UNRELEASED
 	 . README.md: reorganize, reformat, and point to the examples
 	   configuration files.
 	 . INSTALL.md: recommend using packages on Debian and derivatives.
+	 . bandwidthlimit for the dup handler needs to be given in KB/s,
+	   and not (as wrongly advertised previously) in Kbit/s.
+	   (Closes: GitLab#7603)
 
 version 1.0.1 -- June 29, 2012
     handler changes
diff --git a/examples/example.dup b/examples/example.dup
index 9b60f77..bfeccc6 100644
--- a/examples/example.dup
+++ b/examples/example.dup
@@ -229,9 +229,9 @@ exclude = /var/cache/backupninja/duplicity
 ## Default:
 # ftp_password = 
 
-## bandwith limit, in Kbit/s ; default is 0, i.e. no limit
+## bandwith limit, in KB/s ; default is 0, i.e. no limit
 ## if using 'desturl' above, 'bandwidthlimit' must not be set
-## an example setting of 128 Kbit/s would be:
+## an example setting of 128 KB/s would be:
 ## bandwidthlimit = 128
 ##
 ## Default:
diff --git a/handlers/dup.helper.in b/handlers/dup.helper.in
index a6050af..7515623 100644
--- a/handlers/dup.helper.in
+++ b/handlers/dup.helper.in
@@ -500,9 +500,9 @@ keepincroffulls = $dup_keepincroffulls
 # FTP password, needed for backups using desturl = ftp://...
 #ftp_password = 
 
-# bandwith limit, in kbit/s ; default is 0, i.e. no limit
+# bandwith limit, in KB/s ; default is 0, i.e. no limit
 # if using 'desturl' above, 'bandwidthlimit' must not be set
-# an example setting of 128 Kbit/s would be:
+# an example setting of 128 KB/s would be:
 #bandwidthlimit = 128
 bandwidthlimit = $dup_bandwidth
 
-- 
GitLab