summaryrefslogtreecommitdiffstats
path: root/src/base/cmd/cmdFlag.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/cmd/cmdFlag.c')
-rw-r--r--src/base/cmd/cmdFlag.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/base/cmd/cmdFlag.c b/src/base/cmd/cmdFlag.c
index 267f8e06..993f2a49 100644
--- a/src/base/cmd/cmdFlag.c
+++ b/src/base/cmd/cmdFlag.c
@@ -35,8 +35,7 @@
Description [The command parser maintains a table of named values. These
are manipulated using the 'set' and 'unset' commands. The value of the
- named flag is returned, or NIL(char) is returned if the flag has not been
- set.]
+ named flag is returned, or NULL is returned if the flag has not been set.]
SideEffects []
@@ -65,9 +64,9 @@ void Cmd_FlagUpdateValue( Abc_Frame_t * pAbc, char * key, char * value )
if ( !key )
return;
if ( value )
- newValue = util_strsav(value);
+ newValue = Extra_UtilStrsav(value);
else
- newValue = util_strsav("");
+ newValue = Extra_UtilStrsav("");
// newValue = NULL;
if ( st_delete(pAbc->tFlags, &key, &oldValue) )
FREE(oldValue);