Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
45318493
Commit
45318493
authored
Jan 16, 2011
by
Brad Hards
Committed by
Rusty Russell
Jan 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
iscsi: spelling fixes.
parent
0e89f234
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
ccan/iscsi/discovery.c
ccan/iscsi/discovery.c
+1
-1
ccan/iscsi/iscsi.h
ccan/iscsi/iscsi.h
+1
-1
ccan/iscsi/login.c
ccan/iscsi/login.c
+1
-1
ccan/iscsi/pdu.c
ccan/iscsi/pdu.c
+1
-1
No files found.
ccan/iscsi/discovery.c
View file @
45318493
...
...
@@ -155,7 +155,7 @@ int iscsi_process_text_reply(struct iscsi_context *iscsi, struct iscsi_pdu *pdu,
return
-
1
;
}
}
else
{
printf
(
"Dont know how to handle discovery string : %s
\n
"
,
hdr
);
printf
(
"Don
'
t know how to handle discovery string : %s
\n
"
,
hdr
);
pdu
->
callback
(
iscsi
,
ISCSI_STATUS_ERROR
,
NULL
,
pdu
->
private_data
);
iscsi_free_discovery_addresses
(
targets
);
return
-
1
;
...
...
ccan/iscsi/iscsi.h
View file @
45318493
...
...
@@ -131,7 +131,7 @@ typedef void (*iscsi_command_cb)(struct iscsi_context *iscsi, int status, void *
* ISCSI_STATUS_ERROR : Either failed to establish the connection, or an already established connection
* has failed with an error.
*
* The callback will NOT be invoked if the session is explicit
e
ly torn down through a call to
* The callback will NOT be invoked if the session is explicitly torn down through a call to
* iscsi_disconnect() or iscsi_destroy_context().
*/
int
iscsi_connect_async
(
struct
iscsi_context
*
iscsi
,
const
char
*
target
,
iscsi_command_cb
cb
,
void
*
private_data
);
...
...
ccan/iscsi/login.c
View file @
45318493
...
...
@@ -205,7 +205,7 @@ int iscsi_process_login_reply(struct iscsi_context *iscsi, struct iscsi_pdu *pdu
int
status
;
if
(
size
<
ISCSI_HEADER_SIZE
)
{
printf
(
"dont have enough data to read status from login reply
\n
"
);
printf
(
"don
'
t have enough data to read status from login reply
\n
"
);
return
-
1
;
}
...
...
ccan/iscsi/pdu.c
View file @
45318493
...
...
@@ -241,7 +241,7 @@ int iscsi_process_pdu(struct iscsi_context *iscsi, const unsigned char *hdr, int
}
break
;
default:
printf
(
"Dont know how to handle opcode %d
\n
"
,
opcode
);
printf
(
"Don
'
t know how to handle opcode %d
\n
"
,
opcode
);
return
-
2
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment