diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2008-11-04 22:51:56 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2008-11-04 22:51:56 +0000 |
| commit | 1b9a617c7c935c1a8ac29d21880b4b2ef29c99e3 (patch) | |
| tree | faf0e96efd3c333a04dd1290741f1fd4a76ef8f9 /lib/libcam | |
| parent | 96fd89843faeb491189fd4463d234ede9617b8d5 (diff) | |
Notes
Diffstat (limited to 'lib/libcam')
| -rw-r--r-- | lib/libcam/camlib.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libcam/camlib.c b/lib/libcam/camlib.c index e521ed366cf5..73cc3d06f8da 100644 --- a/lib/libcam/camlib.c +++ b/lib/libcam/camlib.c @@ -346,6 +346,9 @@ cam_open_btl(path_id_t path_id, target_id_t target_id, lun_id_t target_lun, bzero(&ccb, sizeof(union ccb)); ccb.ccb_h.func_code = XPT_DEV_MATCH; + ccb.ccb_h.path_id = CAM_XPT_PATH_ID; + ccb.ccb_h.target_id = CAM_TARGET_WILDCARD; + ccb.ccb_h.target_lun = CAM_LUN_WILDCARD; /* Setup the result buffer */ bufsize = sizeof(struct dev_match_result); |
