Fix compilation with debug on.

Fix segfault when TargetAddress is missing or mis-spelled in config file.
This commit is contained in:
Martin Cracauer 2011-01-25 22:25:16 +00:00
parent c06b9dd0c0
commit 7b78852f1d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217859
2 changed files with 3 additions and 3 deletions

View file

@ -295,7 +295,7 @@ keyLookup(char *key)
{
textkey_t *tk;
for(tk = keyMap; tk->name; tk++) {
for(tk = keyMap; tk->name && strcmp(tk->name, "end"); tk++) {
if(strcasecmp(key, tk->name) == 0)
return tk;
}

View file

@ -359,8 +359,8 @@ doCAM(isess_t *sess)
| for now will do this for each lun ...
*/
for(n = i = 0; i < sess->cam.target_nluns; i++) {
debug(2, "CAM path_id=%d target_id=%d target_lun=%d",
sess->cam.path_id, sess->cam.target_id, sess->cam.target_lun[i]);
debug(2, "CAM path_id=%d target_id=%d",
sess->cam.path_id, sess->cam.target_id);
sess->camdev = cam_open_btl(sess->cam.path_id, sess->cam.target_id,
i, O_RDWR, NULL);