Browse Source

Set ErrorRecoveryLevel=0 (we don't want to have to handle it).

tags/v0.9.3
Michael Brown 18 years ago
parent
commit
813a052dc3
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      src/net/tcp/iscsi.c

+ 3
- 2
src/net/tcp/iscsi.c View File

@@ -124,9 +124,10 @@ static int iscsi_build_login_request_strings ( struct iscsi_session *iscsi,
124 124
 			  "MaxRecvDataSegmentLength=512%c"
125 125
 			  "SessionType=Normal%c"
126 126
 			  "DataDigest=None%c"
127
-			  "HeaderDigest=None%c",
127
+			  "HeaderDigest=None%c"
128
+			  "ErrorRecoveryLevel=0%c",
128 129
 			  iscsi->initiator, 0, iscsi->target, 0,
129
-			  0, 0, 0, 0 );
130
+			  0, 0, 0, 0, 0 );
130 131
 }
131 132
 
132 133
 /**

Loading…
Cancel
Save