aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/ppp/physical.h
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1999-06-01 19:08:59 +0000
committerBrian Somers <brian@FreeBSD.org>1999-06-01 19:08:59 +0000
commite6923505eef617eb644e8bb061a9e756a87db75d (patch)
treeb99f978248552e13dc2a28edf8e016946391f882 /usr.sbin/ppp/physical.h
parent7ac97baa2c2f1797448df648bd77d0e27ff716f5 (diff)
downloadsrc-e6923505eef617eb644e8bb061a9e756a87db75d.tar.gz
src-e6923505eef617eb644e8bb061a9e756a87db75d.zip
Increase the length of an individual device name to LINE_LEN.
Adjust the base physical device name correctly after a link transfer (allowing correct multilink callbacks).
Notes
Notes: svn path=/head/; revision=47682
Diffstat (limited to 'usr.sbin/ppp/physical.h')
-rw-r--r--usr.sbin/ppp/physical.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/physical.h b/usr.sbin/ppp/physical.h
index 59f0dcc0fe46..1f3941249072 100644
--- a/usr.sbin/ppp/physical.h
+++ b/usr.sbin/ppp/physical.h
@@ -16,7 +16,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
- * $Id: physical.h,v 1.10 1999/05/12 09:48:58 brian Exp $
+ * $Id: physical.h,v 1.11 1999/05/24 16:39:14 brian Exp $
*
*/
@@ -66,7 +66,7 @@ struct physical {
} input;
struct {
- char full[40]; /* Our current device name */
+ char full[DEVICE_LEN]; /* Our current device name */
char *base;
} name;