[Pkg-ofed-commits] [dapl] 04/06: Add 2 patches to fix a few typos and make lintian happy.

Ana Beatriz Guerrero López ana at moszumanska.debian.org
Tue Mar 29 14:00:38 UTC 2016


This is an automated email from the git hooks/post-receive script.

ana pushed a commit to branch master
in repository dapl.

commit af36ac3c03a366270736858999353761b719925b
Author: Ana Beatriz Guerrero Lopez <ana at debian.org>
Date:   Tue Mar 29 15:18:54 2016 +0200

    Add 2 patches to fix a few typos and make lintian happy.
---
 debian/changelog                                   |  3 +-
 debian/patches/0001-Fix-typos-unkown-unknown.patch | 94 ++++++++++++++++++++++
 debian/patches/0002-typos-manpages.patch           | 35 ++++++++
 debian/patches/series                              |  2 +
 4 files changed, 133 insertions(+), 1 deletion(-)

diff --git a/debian/changelog b/debian/changelog
index b665049..f7fecaa 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,9 @@ dapl (2.1.8-1) UNRELEASED; urgency=medium
    - Add support for Intel OPA driver (hfi).
   * Update to Standards-Version 3.9.7, no changes required.
   * Update Vcs-Browser to use HTTPS.
+  * Add 2 patches to fix a few typos and make lintian happy.
 
- -- Ana Beatriz Guerrero Lopez <ana at debian.org>  Tue, 29 Mar 2016 14:34:53 +0200
+ -- Ana Beatriz Guerrero Lopez <ana at debian.org>  Tue, 29 Mar 2016 15:17:39 +0200
 
 dapl (2.1.5-1) unstable; urgency=medium
 
diff --git a/debian/patches/0001-Fix-typos-unkown-unknown.patch b/debian/patches/0001-Fix-typos-unkown-unknown.patch
new file mode 100644
index 0000000..306bfb6
--- /dev/null
+++ b/debian/patches/0001-Fix-typos-unkown-unknown.patch
@@ -0,0 +1,94 @@
+From fc2bf497ef72e4b8df4e7b9f8979c93085c2607c Mon Sep 17 00:00:00 2001
+From: Ana Guerrero Lopez <ana at ekaia.org>
+Date: Tue, 29 Mar 2016 14:53:28 +0200
+Subject: [PATCH] Fix typos: unkown -> unknown.
+
+---
+ test/dapltest/common/dapl_performance_cmd_util.c | 2 +-
+ test/dapltest/test/dapl_util.c                   | 2 +-
+ test/dtest/dtest.c                               | 2 +-
+ test/dtest/dtestcm.c                             | 2 +-
+ test/dtest/dtestsrq.c                            | 2 +-
+ test/dtest/dtestx.c                              | 2 +-
+ 6 files changed, 6 insertions(+), 6 deletions(-)
+
+diff --git a/test/dapltest/common/dapl_performance_cmd_util.c b/test/dapltest/common/dapl_performance_cmd_util.c
+index 5321809..4434599 100755
+--- a/test/dapltest/common/dapl_performance_cmd_util.c
++++ b/test/dapltest/common/dapl_performance_cmd_util.c
+@@ -52,6 +52,6 @@ const char *DT_PerformanceModeToString(Performance_Mode_Type mode)
+ 	} else if (POLLING_MODE == mode) {
+ 		return "polling";
+ 	} else {
+-		return "error: unkown mode";
++		return "error: unknown mode";
+ 	}
+ }
+diff --git a/test/dapltest/test/dapl_util.c b/test/dapltest/test/dapl_util.c
+index 39cc1a3..67b2d30 100755
+--- a/test/dapltest/test/dapl_util.c
++++ b/test/dapltest/test/dapl_util.c
+@@ -72,7 +72,7 @@ const char *DT_TransferTypeToString(DT_Transfer_Type type)
+ 	if ((0 <= type) && (type <= 2)) {
+ 		return DT_Type[type];
+ 	} else {
+-		return "Error: Unkown Transfer Type";
++		return "Error: Unknown Transfer Type";
+ 	}
+ }
+ 
+diff --git a/test/dtest/dtest.c b/test/dtest/dtest.c
+index e61e000..38e07a8 100755
+--- a/test/dtest/dtest.c
++++ b/test/dtest/dtest.c
+@@ -355,7 +355,7 @@ static void print_ia_address(struct sockaddr *sa)
+ 			ntohs(((struct sockaddr_in6 *)sa)->sin6_port));
+ 		break;
+ 	default:
+-		printf("%d Local Address UNKOWN FAMILY - port %d\n", getpid(), SERVER_CONN_QUAL);
++		printf("%d Local Address UNKNOWN FAMILY - port %d\n", getpid(), SERVER_CONN_QUAL);
+ 	}
+ }
+ 
+diff --git a/test/dtest/dtestcm.c b/test/dtest/dtestcm.c
+index ffba8a4..b691994 100755
+--- a/test/dtest/dtestcm.c
++++ b/test/dtest/dtestcm.c
+@@ -208,7 +208,7 @@ static void print_ia_address(struct sockaddr *sa)
+ 			ntohs(((struct sockaddr_in6 *)sa)->sin6_port));
+ 		break;
+ 	default:
+-		printf("%d Local Address UNKOWN FAMILY - port %d\n", getpid(), SERVER_CONN_QUAL);
++		printf("%d Local Address UNKNOWN FAMILY - port %d\n", getpid(), SERVER_CONN_QUAL);
+ 	}
+ }
+ 
+diff --git a/test/dtest/dtestsrq.c b/test/dtest/dtestsrq.c
+index 2bc2596..fae8e17 100755
+--- a/test/dtest/dtestsrq.c
++++ b/test/dtest/dtestsrq.c
+@@ -1450,7 +1450,7 @@ static void print_ia_address(struct sockaddr *sa)
+ 			ntohs(((struct sockaddr_in6 *)sa)->sin6_port));
+ 		break;
+ 	default:
+-		printf(" Local Address UNKOWN FAMILY - port %d\n", server_port_id);
++		printf(" Local Address UNKNOWN FAMILY - port %d\n", server_port_id);
+ 	}
+ }
+ 
+diff --git a/test/dtest/dtestx.c b/test/dtest/dtestx.c
+index a5693d8..626cade 100755
+--- a/test/dtest/dtestx.c
++++ b/test/dtest/dtestx.c
+@@ -236,7 +236,7 @@ static void print_ia_address(struct sockaddr *sa)
+ 			ntohs(((struct sockaddr_in6 *)sa)->sin6_port));
+ 		break;
+ 	default:
+-		printf("%d Local Address UNKOWN FAMILY - port %d\n", getpid(), SERVER_ID);
++		printf("%d Local Address UNKNOWN FAMILY - port %d\n", getpid(), SERVER_ID);
+ 	}
+ }
+ 
+-- 
+2.8.0.rc3
+
diff --git a/debian/patches/0002-typos-manpages.patch b/debian/patches/0002-typos-manpages.patch
new file mode 100644
index 0000000..976c342
--- /dev/null
+++ b/debian/patches/0002-typos-manpages.patch
@@ -0,0 +1,35 @@
+From 707e85bb8f9a1a0a029ceb86a66b0f41fc54240f Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Ana=20Guerrero=20L=C3=B3pez?= <ana at ekaia.org>
+Date: Tue, 29 Mar 2016 15:49:17 +0200
+Subject: [PATCH] Fix errors in manpages.
+
+---
+ man/dapltest.1 | 1 -
+ man/dat.conf.5 | 2 +-
+ 2 files changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/man/dapltest.1 b/man/dapltest.1
+index 62b44bb..fc5b13c 100755
+--- a/man/dapltest.1
++++ b/man/dapltest.1
+@@ -1,4 +1,3 @@
+-." Text automatically generated by txt2man
+ .TH dapltest 1 "July 16, 2013" "uDAPL 2.0" "USER COMMANDS"
+ 
+ .SH NAME
+diff --git a/man/dat.conf.5 b/man/dat.conf.5
+index e64ec81..f2caf0a 100755
+--- a/man/dat.conf.5
++++ b/man/dat.conf.5
+@@ -32,7 +32,7 @@ entry is termed Static Registration.
+     * Non-blank lines must have seven whitespace separated fields.
+       These fields may contain whitespace if the field is quoted
+       with double quotes. Within fields quoated with double quotes,
+-      the backslash or qoute are valid escape sequences:
++      the backslash or quote are valid escape sequences:
+     * Each non-blank line will contain the following fields:
+         - The IA Name.
+         - The API version of the library:
+-- 
+2.8.0.rc3
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..124295c
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,2 @@
+0001-Fix-typos-unkown-unknown.patch
+0002-typos-manpages.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ofed/dapl.git



More information about the Pkg-ofed-commits mailing list