Fix compilation with debug on.

Fix segfault when TargetAddress is missing or mis-spelled in config file.
This commit is contained in:
cracauer 2011-01-25 22:25:16 +00:00
parent 056b61df17
commit c067e14d2e
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);