Print this page
3217 cfgadm should spell "adaptors" correctly
Reviewed by: Alexander Eremin <alexander.r.eremin@gmail.com>
Reviewed by: David Hoeppner <0xffea@gmail.com>
Reviewed by: Gary Mills <gary_mills@fastmail.fm>
Reviewed by: Eric Schrock <Eric.Schrock@delphix.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/lib/sun_sas/common/sun_sas.c
          +++ new/usr/src/lib/sun_sas/common/sun_sas.c
↓ open down ↓ 125 lines elided ↑ open up ↑
 126  126   * been taken.
 127  127   */
 128  128  struct open_handle *
 129  129  RetrieveOpenHandle(HBA_HANDLE handle)
 130  130  {
 131  131  
 132  132          const char              ROUTINE[] = "RetrieveOpenHandle";
 133  133          struct open_handle      *open_handle_ptr = NULL;
 134  134  
 135  135          if (global_hba_head == NULL) {
 136      -                log(LOG_DEBUG, ROUTINE, "No adpater is found.");
      136 +                log(LOG_DEBUG, ROUTINE, "No adapter is found.");
 137  137                  return (NULL);
 138  138          }
 139  139  
 140  140          for (open_handle_ptr = global_hba_head->open_handles;
 141  141              open_handle_ptr != NULL;
 142  142              open_handle_ptr = open_handle_ptr->next) {
 143  143                  if (open_handle_ptr->handle == handle) {
 144  144                          break;
 145  145                  }
 146  146          }
↓ open down ↓ 285 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX