diff options
author | imp <imp@FreeBSD.org> | 2009-06-09 07:14:32 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2009-06-09 07:14:32 +0000 |
commit | a7c40ee1bb97afba57795ab74d3b377c1fc021be (patch) | |
tree | 224a1b7f81f28364ffa073b337b1749a56d3d6e8 /sys/dev/ctau/if_ct.c | |
parent | aeed4d85618868ae46b9b56d7f89158e63c5e532 (diff) | |
download | FreeBSD-src-a7c40ee1bb97afba57795ab74d3b377c1fc021be.zip FreeBSD-src-a7c40ee1bb97afba57795ab74d3b377c1fc021be.tar.gz |
Use new spelling of the NG_*LEN constants.
Diffstat (limited to 'sys/dev/ctau/if_ct.c')
-rw-r--r-- | sys/dev/ctau/if_ct.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ctau/if_ct.c b/sys/dev/ctau/if_ct.c index 9362ac1..de3408b 100644 --- a/sys/dev/ctau/if_ct.c +++ b/sys/dev/ctau/if_ct.c @@ -112,7 +112,7 @@ typedef struct _drv_t { ct_dma_mem_t dmamem; int running; #ifdef NETGRAPH - char nodename [NG_NODELEN+1]; + char nodename [NG_NODESIZ]; hook_p hook; hook_p debug_hook; node_p node; @@ -2061,7 +2061,7 @@ static int ng_ct_rcvmsg (node_p node, item_p item, hook_p lasthook) l += print_stats (s + l, d->chan, 1); l += print_modems (s + l, d->chan, 1); l += print_e1_stats (s + l, d->chan); - strncpy ((resp)->header.cmdstr, "status", NG_CMDSTRLEN); + strncpy ((resp)->header.cmdstr, "status", NG_CMDSTRSIZ); } break; } |