diff options
author | kevlo <kevlo@FreeBSD.org> | 2012-10-09 06:15:16 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2012-10-09 06:15:16 +0000 |
commit | 543514a78ba423fb4c2351e080e8822ed44312d1 (patch) | |
tree | 77d2e0f9e2faa36561163e6c572b74e1c0181597 /sys | |
parent | 4a272808c2860ae0e3f039d5b5f761c91e59c0f2 (diff) | |
download | FreeBSD-src-543514a78ba423fb4c2351e080e8822ed44312d1.zip FreeBSD-src-543514a78ba423fb4c2351e080e8822ed44312d1.tar.gz |
Fix typo: s/unknow/unknown
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/arcmsr/arcmsr.c | 6 | ||||
-rw-r--r-- | sys/netgraph/netflow/ng_netflow.c | 2 | ||||
-rw-r--r-- | sys/netpfil/ipfw/ip_dn_glue.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/arcmsr/arcmsr.c b/sys/dev/arcmsr/arcmsr.c index 044f7d2..af359be 100644 --- a/sys/dev/arcmsr/arcmsr.c +++ b/sys/dev/arcmsr/arcmsr.c @@ -753,11 +753,11 @@ static void arcmsr_report_srb_state(struct AdapterControlBlock *acb, struct Comm } break; default: - printf("arcmsr%d: scsi id=%d lun=%d isr got command error done,but got unknow DeviceStatus=0x%x \n" + printf("arcmsr%d: scsi id=%d lun=%d isr got command error done,but got unknown DeviceStatus=0x%x \n" , acb->pci_unit, target, lun ,srb->arcmsr_cdb.DeviceStatus); acb->devstate[target][lun]=ARECA_RAID_GONE; srb->pccb->ccb_h.status |= CAM_UNCOR_PARITY; - /*unknow error or crc error just for retry*/ + /*unknown error or crc error just for retry*/ arcmsr_srb_complete(srb, 1); break; } @@ -1789,7 +1789,7 @@ static void arcmsr_interrupt(struct AdapterControlBlock *acb) break; default: printf("arcmsr%d: interrupt service," - " unknow adapter type =%d\n", acb->pci_unit, acb->adapter_type); + " unknown adapter type =%d\n", acb->pci_unit, acb->adapter_type); break; } } diff --git a/sys/netgraph/netflow/ng_netflow.c b/sys/netgraph/netflow/ng_netflow.c index 1cb6179..d2c136c 100644 --- a/sys/netgraph/netflow/ng_netflow.c +++ b/sys/netgraph/netflow/ng_netflow.c @@ -832,7 +832,7 @@ ng_netflow_rcvdata (hook_p hook, item_p item) goto loopend; #endif /* - * Any unknow header (new extension or IPv6/IPv4 + * Any unknown header (new extension or IPv6/IPv4 * header for tunnels) ends loop. */ default: diff --git a/sys/netpfil/ipfw/ip_dn_glue.c b/sys/netpfil/ipfw/ip_dn_glue.c index 2e4f460..54eed75 100644 --- a/sys/netpfil/ipfw/ip_dn_glue.c +++ b/sys/netpfil/ipfw/ip_dn_glue.c @@ -315,10 +315,10 @@ static size_t pipesizemax8 = sizeof(struct dn_pipe_max8); /* Indicate 'ipfw' version * 1: from FreeBSD 7.2 * 0: from FreeBSD 8 - * -1: unknow (for now is unused) + * -1: unknown (for now is unused) * * It is update when a IP_DUMMYNET_DEL or IP_DUMMYNET_CONFIGURE request arrives - * NOTE: if a IP_DUMMYNET_GET arrives and the 'ipfw' version is unknow, + * NOTE: if a IP_DUMMYNET_GET arrives and the 'ipfw' version is unknown, * it is suppose to be the FreeBSD 8 version. */ static int is7 = 0; |