~ubuntu-branches/ubuntu/precise/open-iscsi/precise-backports

« back to all changes in this revision

Viewing changes to debian/patches/01_spelling-errors-and-manpage-hyphen-fixes.patch

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2013-09-20 09:07:42 UTC
  • mfrom: (37.1.5 quantal-proposed)
  • Revision ID: package-import@ubuntu.com-20130920090742-rv5qfxabddc9dk2h
Tags: 2.0.873-3ubuntu5~ubuntu12.04.1
No-change backport to precise (LP: #1228046)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
spelling error fixes
 
2
Index: open-iscsi/doc/iscsiadm.8
 
3
===================================================================
 
4
--- open-iscsi.orig/doc/iscsiadm.8      2012-04-07 20:49:15.044826780 +0530
 
5
+++ open-iscsi/doc/iscsiadm.8   2012-04-07 20:52:31.133799130 +0530
 
6
@@ -2,10 +2,10 @@
 
7
 .SH NAME
 
8
 iscsiadm \- open-iscsi administration utility
 
9
 .SH SYNOPSIS
 
10
-\fBiscsiadm\fR \-m discoverydb [ \-hV ] [ \-d debug_level ] [ \-P printlevel ] [ \-I iface \-t type \-p ip:port [ \-lD ] ] | [ [ -p ip:port -t type ] \
 
11
+\fBiscsiadm\fR \-m discoverydb [ \-hV ] [ \-d debug_level ] [ \-P printlevel ] [ \-I iface \-t type \-p ip:port [ \-lD ] ] | [ [ \-p ip:port \-t type ] \
 
12
 [ \-o operation ] [ \-n name ] [ \-v value ] [ \-lD ] ]
 
13
 
 
14
-\fBiscsiadm\fR \-m discovery [ \-hV ] [ \-d debug_level ] [ \-P printlevel ] [ \-I iface \-t type \-p ip:port [ \-l ] ] | [ [ -p ip:port ] [ \-l | \-D ] ]
 
15
+\fBiscsiadm\fR \-m discovery [ \-hV ] [ \-d debug_level ] [ \-P printlevel ] [ \-I iface \-t type \-p ip:port [ \-l ] ] | [ [ \-p ip:port ] [ \-l | \-D ] ]
 
16
 
 
17
 \fBiscsiadm\fR \-m node [ \-hV ] [ \-d debug_level ] [ \-P printlevel ] [ \-L all,manual,automatic ] [ \-U all,manual,automatic ] [ \-S ] [ [ \-T targetname \-p ip:port \-I iface ] [ \-l | \-u | \-R | \-s] ]
 
18
 [ [ \-o operation ]  [ \-n name ] [ \-v value ] [ \-p ip:port ] ]
 
19
@@ -16,7 +16,7 @@
 
20
 
 
21
 \fBiscsiadm\fR \-m fw [\-l]
 
22
 
 
23
-\fBiscsiadm\fR \-m host [ \-P printlevel ] [ \-H hostno|MAC ] [ -C chap [ -o operation ] [ -v chap_tbl_idx ] ]
 
24
+\fBiscsiadm\fR \-m host [ \-P printlevel ] [ \-H hostno|MAC ] [ \-C chap [ \-o operation ] [ \-v chap_tbl_idx ] ]
 
25
 
 
26
 \fBiscsiadm\fR \-k priority
 
27
 
 
28
@@ -64,7 +64,7 @@
 
29
 
 
30
 Currently iscsiadm support ping as submode for iface. For example,
 
31
 
 
32
-iscsiadm -m iface -I ifacename -C ping -a ipaddr -b packetsize -c count -i interval
 
33
+iscsiadm \-m iface \-I ifacename \-C ping \-a ipaddr \-b packetsize \-c count \-i interval
 
34
 
 
35
 .TP
 
36
 \fB\-d\fR, \fB\-\-debug=\fIdebug_level\fP
 
37
@@ -113,7 +113,7 @@
 
38
 In discovery mode multiple interfaces can be specified by passing in multiple
 
39
 \-I/\-\-interface instances. For example,
 
40
 
 
41
-"iscsiadm \-m discoverydb \-t st \-p ip:port \-I iface0 \-I iface2 --discover"
 
42
+"iscsiadm \-m discoverydb \-t st \-p ip:port \-I iface0 \-I iface2 \-\-discover"
 
43
 
 
44
 Will direct iscsiadm to setup the node db to create records which will create
 
45
 sessions though the two intefaces passed in.
 
46
Index: open-iscsi/usr/auth.c
 
47
===================================================================
 
48
--- open-iscsi.orig/usr/auth.c  2012-04-07 20:49:15.044826780 +0530
 
49
+++ open-iscsi/usr/auth.c       2012-04-07 20:49:21.232857456 +0530
 
50
@@ -2002,7 +2002,7 @@
 
51
                "AuthMethod negotiation failed",
 
52
                "AuthMethod negotiated to none",
 
53
                "CHAP algorithm negotiation failed",
 
54
-               "CHAP challange reflected",
 
55
+               "CHAP challenge reflected",
 
56
                "Local password same as remote",
 
57
                "Local password not set",
 
58
                "CHAP identifier bad",
 
59
Index: open-iscsi/usr/initiator_common.c
 
60
===================================================================
 
61
--- open-iscsi.orig/usr/initiator_common.c      2012-04-07 19:36:03.303049315 +0530
 
62
+++ open-iscsi/usr/initiator_common.c   2012-04-07 20:49:51.281006449 +0530
 
63
@@ -77,7 +77,7 @@
 
64
        if (auth_cfg->username_in[0] || auth_cfg->password_in_length) {
 
65
                /* sanity check the config */
 
66
                if (auth_cfg->password_length == 0) {
 
67
-                       log_warning("CHAP configuratoin has incoming "
 
68
+                       log_warning("CHAP configuration has incoming "
 
69
                                    "authentication credentials but has no "
 
70
                                    "outgoing credentials configured.");
 
71
                        return EINVAL;
 
72
Index: open-iscsi/usr/netlink.c
 
73
===================================================================
 
74
--- open-iscsi.orig/usr/netlink.c       2012-04-07 19:36:31.791190562 +0530
 
75
+++ open-iscsi/usr/netlink.c    2012-04-07 20:50:28.697191996 +0530
 
76
@@ -935,7 +935,7 @@
 
77
        iov[1].iov_len = sizeof(ev);
 
78
        rc = __kipc_call(iov, 2);
 
79
        if (rc < 0) {
 
80
-               log_error("connnection %d:%d transport disconnect failed for "
 
81
+               log_error("connection %d:%d transport disconnect failed for "
 
82
                          "ep %" PRIu64 " with error %d.", conn->session->id,
 
83
                          conn->id, conn->transport_ep_handle, rc);
 
84
        } else