Index: formats/format_g729.c =================================================================== RCS file: /usr/cvsroot/asterisk/formats/format_g729.c,v retrieving revision 1.14 diff -u -r1.14 format_g729.c --- formats/format_g729.c 14 Dec 2004 23:36:30 -0000 1.14 +++ formats/format_g729.c 19 Dec 2004 10:30:20 -0000 @@ -187,7 +187,7 @@ if (whence != SEEK_FORCECUR) { offset = (offset > max)?max:offset; } - // protect against seeking beyond begining. + /* protect against seeking beyond begining. */ offset = (offset < min)?min:offset; if (lseek(fs->fd, offset, SEEK_SET) < 0) return -1; Index: formats/format_gsm.c =================================================================== RCS file: /usr/cvsroot/asterisk/formats/format_gsm.c,v retrieving revision 1.19 diff -u -r1.19 format_gsm.c --- formats/format_gsm.c 14 Dec 2004 23:36:30 -0000 1.19 +++ formats/format_gsm.c 19 Dec 2004 10:30:20 -0000 @@ -3,9 +3,9 @@ * * Save to raw, headerless GSM data. * - * Copyright (C) 1999, Mark Spencer + * Copyright (C) 1999-2004, Digium, inc * - * Mark Spencer + * Mark Spencer * * This program is free software, distributed under the terms of * the GNU General Public License @@ -200,7 +200,7 @@ offset = distance + cur; else if(whence == SEEK_END) offset = max - distance; - // Always protect against seeking past the begining. + /* Always protect against seeking past the begining. */ offset = (offset < min)?min:offset; if (whence != SEEK_FORCECUR) { offset = (offset > max)?max:offset; Index: formats/format_ilbc.c =================================================================== RCS file: /usr/cvsroot/asterisk/formats/format_ilbc.c,v retrieving revision 1.7 diff -u -r1.7 format_ilbc.c --- formats/format_ilbc.c 14 Dec 2004 23:36:30 -0000 1.7 +++ formats/format_ilbc.c 19 Dec 2004 10:30:20 -0000 @@ -5,9 +5,9 @@ * * Brian K. West * - * Copyright (C) 1999, Mark Spencer + * Copyright (C) 1999-2004, Digium, inc * - * Mark Spencer + * Mark Spencer * * This program is free software, distributed under the terms of * the GNU General Public License @@ -189,7 +189,7 @@ if (whence != SEEK_FORCECUR) { offset = (offset > max)?max:offset; } - // protect against seeking beyond begining. + /* protect against seeking beyond begining. */ offset = (offset < min)?min:offset; if (lseek(fs->fd, offset, SEEK_SET) < 0) return -1; Index: formats/format_sln.c =================================================================== RCS file: /usr/cvsroot/asterisk/formats/format_sln.c,v retrieving revision 1.3 diff -u -r1.3 format_sln.c --- formats/format_sln.c 14 Dec 2004 23:36:30 -0000 1.3 +++ formats/format_sln.c 19 Dec 2004 10:30:20 -0000 @@ -175,7 +175,7 @@ if (whence != SEEK_FORCECUR) { offset = (offset > max)?max:offset; } - // always protect against seeking past begining. + /* always protect against seeking past begining. */ offset = (offset < min)?min:offset; return lseek(fs->fd, offset, SEEK_SET); } Index: formats/format_wav_gsm.c =================================================================== RCS file: /usr/cvsroot/asterisk/formats/format_wav_gsm.c,v retrieving revision 1.27 diff -u -r1.27 format_wav_gsm.c --- formats/format_wav_gsm.c 14 Dec 2004 23:36:30 -0000 1.27 +++ formats/format_wav_gsm.c 19 Dec 2004 10:30:21 -0000 @@ -501,7 +501,7 @@ offset = distance + cur; else if(whence == SEEK_END) offset = max - distance; - // always protect against seeking past end of header + /* always protect against seeking past end of header */ offset = (offset < min)?min:offset; if (whence != SEEK_FORCECUR) { offset = (offset > max)?max:offset;