Spell length with h after t. Inspired by a commit by brad@openbsd.
This commit is contained in:
parent
8437e697bc
commit
e365329be5
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: pppoectl.c,v 1.14 2003/09/06 19:35:35 martin Exp $ */
|
||||
/* $NetBSD: pppoectl.c,v 1.15 2004/02/13 18:02:05 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997 Joerg Wunsch
|
||||
|
@ -31,7 +31,7 @@
|
|||
#include <sys/cdefs.h>
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: pppoectl.c,v 1.14 2003/09/06 19:35:35 martin Exp $");
|
||||
__RCSID("$NetBSD: pppoectl.c,v 1.15 2004/02/13 18:02:05 wiz Exp $");
|
||||
#endif
|
||||
|
||||
|
||||
|
@ -260,7 +260,7 @@ main(int argc, char **argv)
|
|||
if (argc == 0 && !(dns1||dns2) && !configname) {
|
||||
/* list only mode */
|
||||
|
||||
/* first pass, get name lenghts */
|
||||
/* first pass, get name lengths */
|
||||
if (ioctl(s, SPPPGETAUTHCFG, &spr) == -1)
|
||||
err(EX_OSERR, "SPPPGETAUTHCFG");
|
||||
/* now allocate buffers for strings */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: altq_blue.c,v 1.8 2003/11/09 22:11:12 christos Exp $ */
|
||||
/* $NetBSD: altq_blue.c,v 1.9 2004/02/13 18:02:05 wiz Exp $ */
|
||||
/* $KAME: altq_blue.c,v 1.8 2002/01/07 11:25:40 kjc Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -61,7 +61,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_blue.c,v 1.8 2003/11/09 22:11:12 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_blue.c,v 1.9 2004/02/13 18:02:05 wiz Exp $");
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
#include "opt_altq.h"
|
||||
|
@ -106,7 +106,7 @@ __KERNEL_RCSID(0, "$NetBSD: altq_blue.c,v 1.8 2003/11/09 22:11:12 christos Exp $
|
|||
/* fixed-point uses 12-bit decimal places */
|
||||
#define FP_SHIFT 12 /* fixed-point shift */
|
||||
|
||||
#define BLUE_LIMIT 200 /* default max queue lenght */
|
||||
#define BLUE_LIMIT 200 /* default max queue length */
|
||||
|
||||
/* blue_list keeps all blue_state_t's allocated. */
|
||||
static blue_queue_t *blue_list = NULL;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: altq_fifoq.h,v 1.2 2000/12/14 08:49:50 thorpej Exp $ */
|
||||
/* $NetBSD: altq_fifoq.h,v 1.3 2004/02/13 18:02:05 wiz Exp $ */
|
||||
/* $KAME: altq_fifoq.h,v 1.6 2000/12/14 08:12:45 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -65,7 +65,7 @@ struct fifoq_conf {
|
|||
int fifoq_limit;
|
||||
};
|
||||
|
||||
#define FIFOQ_LIMIT 50 /* default max queue lenght */
|
||||
#define FIFOQ_LIMIT 50 /* default max queue length */
|
||||
|
||||
/*
|
||||
* IOCTLs for FIFOQ
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: altq_red.c,v 1.9 2003/11/09 22:11:12 christos Exp $ */
|
||||
/* $NetBSD: altq_red.c,v 1.10 2004/02/13 18:02:05 wiz Exp $ */
|
||||
/* $KAME: altq_red.c,v 1.9 2002/01/07 11:25:40 kjc Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -61,7 +61,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_red.c,v 1.9 2003/11/09 22:11:12 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_red.c,v 1.10 2004/02/13 18:02:05 wiz Exp $");
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
#include "opt_altq.h"
|
||||
|
@ -160,7 +160,7 @@ __KERNEL_RCSID(0, "$NetBSD: altq_red.c,v 1.9 2003/11/09 22:11:12 christos Exp $"
|
|||
#define TH_MIN 5 /* min threshold */
|
||||
#define TH_MAX 15 /* max threshold */
|
||||
|
||||
#define RED_LIMIT 60 /* default max queue lenght */
|
||||
#define RED_LIMIT 60 /* default max queue length */
|
||||
|
||||
/*
|
||||
* our default policy for forced-drop is drop-tail.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: altq_rio.c,v 1.5 2003/11/09 22:11:12 christos Exp $ */
|
||||
/* $NetBSD: altq_rio.c,v 1.6 2004/02/13 18:02:05 wiz Exp $ */
|
||||
/* $KAME: altq_rio.c,v 1.8 2000/12/14 08:12:46 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -60,7 +60,7 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_rio.c,v 1.5 2003/11/09 22:11:12 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: altq_rio.c,v 1.6 2004/02/13 18:02:05 wiz Exp $");
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__)
|
||||
#include "opt_altq.h"
|
||||
|
@ -149,7 +149,7 @@ __KERNEL_RCSID(0, "$NetBSD: altq_rio.c,v 1.5 2003/11/09 22:11:12 christos Exp $"
|
|||
#define TH_MIN 5 /* min threshold */
|
||||
#define TH_MAX 15 /* max threshold */
|
||||
|
||||
#define RIO_LIMIT 60 /* default max queue lenght */
|
||||
#define RIO_LIMIT 60 /* default max queue length */
|
||||
|
||||
#define TV_DELTA(a, b, delta) { \
|
||||
register int xxs; \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: advlib.h,v 1.13 2001/04/25 17:53:29 bouyer Exp $ */
|
||||
/* $NetBSD: advlib.h,v 1.14 2004/02/13 18:02:05 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Definitions for low level routines and data structures
|
||||
|
@ -452,7 +452,7 @@ typedef struct asc_scisq_1
|
|||
u_int32_t data_addr; /* physical address of first segment to transef */
|
||||
u_int32_t data_cnt; /* byte count of first segment to transfer */
|
||||
u_int32_t sense_addr; /* physical address of the sense buffer */
|
||||
u_int8_t sense_len; /* lenght of sense buffer */
|
||||
u_int8_t sense_len; /* length of sense buffer */
|
||||
u_int8_t extra_bytes;
|
||||
} ASC_SCSIQ_1;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: hifn7751reg.h,v 1.5 2003/11/16 00:22:09 jonathan Exp $ */
|
||||
/* $NetBSD: hifn7751reg.h,v 1.6 2004/02/13 18:02:05 wiz Exp $ */
|
||||
/* $OpenBSD: hifn7751reg.h,v 1.43 2003/06/02 15:58:41 deraadt Exp $ */
|
||||
|
||||
/*
|
||||
|
@ -322,7 +322,7 @@ struct hifn_desc {
|
|||
#define HIFN_PUBOPLEN_MOD_M 0x0000007f /* modulus length mask */
|
||||
#define HIFN_PUBOPLEN_MOD_S 0 /* modulus length shift */
|
||||
#define HIFN_PUBOPLEN_EXP_M 0x0003ff80 /* exponent length mask */
|
||||
#define HIFN_PUBOPLEN_EXP_S 7 /* exponent lenght shift */
|
||||
#define HIFN_PUBOPLEN_EXP_S 7 /* exponent length shift */
|
||||
#define HIFN_PUBOPLEN_RED_M 0x003c0000 /* reducend length mask */
|
||||
#define HIFN_PUBOPLEN_RED_S 18 /* reducend length shift */
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: i4b_l2.h,v 1.8 2003/10/03 16:38:44 pooka Exp $ */
|
||||
/* $NetBSD: i4b_l2.h,v 1.9 2004/02/13 18:02:05 wiz Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1997, 2000 Hellmuth Michaelis. All rights reserved.
|
||||
|
@ -29,7 +29,7 @@
|
|||
* i4b_l2.h - ISDN layer 2 (Q.921) definitions
|
||||
* ---------------------------------------------
|
||||
*
|
||||
* $Id: i4b_l2.h,v 1.8 2003/10/03 16:38:44 pooka Exp $
|
||||
* $Id: i4b_l2.h,v 1.9 2004/02/13 18:02:05 wiz Exp $
|
||||
*
|
||||
* $FreeBSD$
|
||||
*
|
||||
|
@ -197,7 +197,7 @@ typedef enum {
|
|||
|
||||
/* S frames */
|
||||
|
||||
#define S_FRAME_LEN 4 /* lenght of a U-frame */
|
||||
#define S_FRAME_LEN 4 /* length of a U-frame */
|
||||
#define OFF_SRCR 2 /* 1st byte of control field, */
|
||||
/* R-commands and R-responses */
|
||||
#define OFF_SNR 3 /* 2nd byte of control field, N(R) and PF */
|
||||
|
@ -213,7 +213,7 @@ typedef enum {
|
|||
/* U frames */
|
||||
|
||||
#define UI_HDR_LEN 3 /* length of UI header in front of L3 frame */
|
||||
#define U_FRAME_LEN 3 /* lenght of a U-frame */
|
||||
#define U_FRAME_LEN 3 /* length of a U-frame */
|
||||
#define UPFBIT 0x10 /* poll/final bit mask */
|
||||
#define UPBITSET UPFBIT
|
||||
#define UFBITSET UPFBIT
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
* i4b_q931.h - Q931 handling header file
|
||||
* --------------------------------------
|
||||
*
|
||||
* $Id: i4b_q931.h,v 1.1.1.1 2001/01/05 12:49:56 martin Exp $
|
||||
* $Id: i4b_q931.h,v 1.2 2004/02/13 18:02:05 wiz Exp $
|
||||
*
|
||||
* $FreeBSD$
|
||||
*
|
||||
|
@ -74,7 +74,7 @@
|
|||
|
||||
#define MSG_SETUP_LEN 18 /* without number strings ! */
|
||||
|
||||
#define IEI_BEARERCAP_LEN 2 /* 2 octetts lenght */
|
||||
#define IEI_BEARERCAP_LEN 2 /* 2 octetts length */
|
||||
|
||||
#define IT_CAP_SPEECH 0x80 /* BC: information xfer capability */
|
||||
#define IT_CAP_UNR_DIG_INFO 0x88 /* BC: information xfer capability */
|
||||
|
|
Loading…
Reference in New Issue