From 28ef6c316f1aff914bb95ac09787a3c83c1815fd Mon Sep 17 00:00:00 2001 From: Jari Aalto Date: Fri, 6 Apr 2001 19:14:31 +0000 Subject: Imported from ../bash-2.05.tar.gz. --- pcomplib.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'pcomplib.c') diff --git a/pcomplib.c b/pcomplib.c index 133c6f40..d531cf57 100644 --- a/pcomplib.c +++ b/pcomplib.c @@ -52,6 +52,7 @@ alloc_compspec () ret->refcount = 0; ret->actions = (unsigned long)0; + ret->options = (unsigned long)0; ret->globpat = (char *)NULL; ret->words = (char *)NULL; @@ -93,6 +94,7 @@ copy_compspec (cs) new->refcount = cs->refcount; new->actions = cs->actions; + new->options = cs->options; new->globpat = STRDUP (cs->globpat); new->words = STRDUP (cs->words); @@ -185,7 +187,7 @@ add_progcomp (cmd, cs) COMPSPEC * find_compspec (cmd) - char *cmd; + const char *cmd; { register BUCKET_CONTENTS *item; COMPSPEC *cs; @@ -193,7 +195,7 @@ find_compspec (cmd) if (prog_completes == 0) return ((COMPSPEC *)NULL); - item = find_hash_item (cmd, prog_completes); + item = find_hash_item ((char *)cmd, prog_completes); /* XXX fix const later */ if (item == NULL) return ((COMPSPEC *)NULL); -- cgit v1.2.1