From 8c0c3e6dc4b2f7ba94771ff1fcf6adc332f42fde Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 24 Apr 1998 14:31:03 +0000 Subject: Update. * termios/cfsetspeed.c: Make code cleaner and add missing const. Patch by Joe Keane . --- ChangeLog | 3 +++ termios/cfsetspeed.c | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6eb64da366..4588896460 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-04-24 Ulrich Drepper + * termios/cfsetspeed.c: Make code cleaner and add missing const. + Patch by Joe Keane . + * inet/rcmd.c (__ivaliduser): Check buf for being NULL before free()ing. diff --git a/termios/cfsetspeed.c b/termios/cfsetspeed.c index 91f420163e..d183f45c1e 100644 --- a/termios/cfsetspeed.c +++ b/termios/cfsetspeed.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1993, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1992, 1993, 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -20,11 +20,13 @@ #include #include -static struct speed_struct +struct speed_struct { speed_t value; speed_t internal; -} speeds[] = +}; + +static const struct speed_struct speeds[] = { #ifdef B0 { 0, B0 }, -- cgit 1.4.1