From 67fb03d261b1657ab0b9384963e8007298ce1825 Mon Sep 17 00:00:00 2001 From: Roman Kurakin Date: Sun, 16 Jan 2005 19:22:09 +0000 Subject: [PATCH] Fix comment. Code 0x95 means locking shift to codeset 5 according to T1.617 AnnexD. Locking shift procedure is described in ANSI T1.607. MFC after: 3 days --- sys/netgraph/ng_lmi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/netgraph/ng_lmi.c b/sys/netgraph/ng_lmi.c index 98bd3551b59..1258ecac8fa 100644 --- a/sys/netgraph/ng_lmi.c +++ b/sys/netgraph/ng_lmi.c @@ -348,9 +348,9 @@ nglmi_inquire(sc_p sc, int full) *cptr++ = 0x00; /* call reference */ *cptr++ = 0x75; /* inquiry */ - /* If we are Annex-D, there is this extra thing.. */ + /* If we are Annex-D, and locking shift to codeset 5. */ if (ANNEXD(sc)) - *cptr++ = 0x95; /* ??? */ + *cptr++ = 0x95; /* locking shift */ /* Add a request type */ if (ANNEXA(sc)) *cptr++ = 0x51; /* report type */