From 69a07d8807e9bafeefce98802f3ea8e158d75492 Mon Sep 17 00:00:00 2001 From: Jim Kowalkowski Date: Thu, 17 Oct 1996 12:41:48 +0000 Subject: [PATCH] took out strdup function - replaced with strDup --- src/gdd/gddAppTable.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gdd/gddAppTable.cc b/src/gdd/gddAppTable.cc index bc7ec9371..0c898270a 100644 --- a/src/gdd/gddAppTable.cc +++ b/src/gdd/gddAppTable.cc @@ -4,6 +4,9 @@ // $Id$ // // $Log$ +// Revision 1.4 1996/09/07 13:03:07 jbk +// fixes to destroyData function +// // Revision 1.3 1996/08/27 13:05:08 jbk // final repairs to string functions, put() functions, and error code printing // @@ -260,7 +263,7 @@ gddStatus gddApplicationTypeTable::registerApplicationType( } } - attr_table[group][app].app_name=strdup(name); + attr_table[group][app].app_name=strDup(name); attr_table[group][app].type=gddApplicationTypeNormal; attr_table[group][app].proto=NULL; attr_table[group][app].free_list=NULL;