X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Ftabcomplete.c;h=ad48f3b39777e6f0f7152e0854d05d869dc5ba67;hb=27743f316331a9ea508df5f204416a6864fc320f;hp=b443c33ee4bb8dc3d7cf3531f4076562814473b1;hpb=2c530ea4045bf7a0c3895ea1ed31c222536d6143;p=yaz-moved-to-github.git diff --git a/client/tabcomplete.c b/client/tabcomplete.c index b443c33..ad48f3b 100644 --- a/client/tabcomplete.c +++ b/client/tabcomplete.c @@ -2,7 +2,7 @@ * Copyright (c) 2002, Index Data * See the file LICENSE for details. * - * $Id: tabcomplete.c,v 1.6 2002-07-12 13:42:20 adam Exp $ + * $Id: tabcomplete.c,v 1.8 2002-09-24 08:05:41 adam Exp $ */ #include @@ -80,7 +80,7 @@ void oid_loader(struct oident* oid, void* data_) char** build_list_for_oclass(oid_class oclass) { oid_callback_t data; - data.values = calloc(10,sizeof(char*)); + data.values = (char **) calloc(10,sizeof(char*)); data.index = 0; data.max = 9; data.oclass = oclass; @@ -103,6 +103,12 @@ char* complete_querytype(const char *text, int state) return complete_from_list(querytypes,text,state); } +char* complete_auto_reconnect(const char *text, int state) +{ + char* querytypes[] = {"on","off",0}; + return complete_from_list(querytypes,text,state); +} + char* complete_format(const char* text, int state) {