Added missing '$' to rcs id string, changed from #ident to char

This commit is contained in:
Thomas Jensen 1999-04-12 18:13:20 +00:00
parent 60535ea3b3
commit 3722111e95
2 changed files with 8 additions and 3 deletions

View File

@ -26,7 +26,8 @@
#include <regexp.h> #include <regexp.h>
#include "regmagic.h" #include "regmagic.h"
#ident "$Id" char rcsid_regexp_c[] =
"$Id$";
/* /*
* The "internal use only" fields in regexp.h are present to pass info from * The "internal use only" fields in regexp.h are present to pass info from

View File

@ -3,7 +3,7 @@
* Date created: Copyright (c) 1986 by University of Toronto. * Date created: Copyright (c) 1986 by University of Toronto.
* Author: Henry Spencer. * Author: Henry Spencer.
* Extensions and modifications by Thomas Jensen * Extensions and modifications by Thomas Jensen
* Version: $Id: regsub.c,v 1.1 1999/04/04 16:14:46 tsjensen Exp tsjensen $ * Version: $Id: regsub.c,v 1.2 1999/04/05 19:39:27 tsjensen Exp tsjensen $
* Language: K&R C (traditional) * Language: K&R C (traditional)
* World Wide Web: http://home.pages.de/~jensen/boxes/ * World Wide Web: http://home.pages.de/~jensen/boxes/
* Purpose: Perform substitutions after a regexp match * Purpose: Perform substitutions after a regexp match
@ -24,6 +24,9 @@
* Revision History: * Revision History:
* *
* $Log: regsub.c,v $ * $Log: regsub.c,v $
* Revision 1.2 1999/04/05 19:39:27 tsjensen
* Hopefully fixed a potential buffer overrun problem in regsub()
*
* Revision 1.1 1999/04/04 16:14:46 tsjensen * Revision 1.1 1999/04/04 16:14:46 tsjensen
* Initial revision * Initial revision
* *
@ -35,7 +38,8 @@
#include <regexp.h> #include <regexp.h>
#include "regmagic.h" #include "regmagic.h"
#ident "$Id" char rcsid_regsub_c[] =
"$Id$";