]> git.sur5r.net Git - openldap/blob - clients/rcpt500/cmds.c
Don't try to free NULL idl. Did not cause a problem, though, as
[openldap] / clients / rcpt500 / cmds.c
1 /*
2  * cmds.c: command table for rcpt500 (X.500 email query responder)
3  *
4  * 18 June 1992 by Mark C Smith
5  * Copyright (c) 1992 The Regents of The University of Michigan
6  * All Rights Reserved
7  */
8
9 #include "portable.h"
10
11 #include <stdlib.h>
12 #include "rcpt500.h"
13
14 struct command cmds[] = {
15         "help",         help_cmd,       /* help must be the first command */
16         "query for",    query_cmd,      /* must come before "query for" */
17         "query",        query_cmd,
18         "find",         query_cmd,
19         "read",         query_cmd,
20         "search for",   query_cmd,      /* must come before "search" */
21         "search",       query_cmd,
22         "lookup",       query_cmd,
23         "look up",      query_cmd,
24         "show",         query_cmd,
25         "finger",       query_cmd,
26         "whois",        query_cmd,
27         "who is",       query_cmd,
28         "locate",       query_cmd,
29         NULL,           NULL            /* end of command list */
30 };