]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/init.c
Protoized, moved extern definitions to .h files, fixed related bugs.
[openldap] / servers / slapd / back-shell / init.c
1 /* init.c - initialize shell backend */
2
3 #include "portable.h"
4
5 #include <stdio.h>
6
7 #include <ac/socket.h>
8
9 #include "slap.h"
10 #include "shell.h"
11
12 void
13 shell_back_init(
14     Backend     *be
15 )
16 {
17         struct shellinfo        *si;
18
19         si = (struct shellinfo *) ch_calloc( 1, sizeof(struct shellinfo) );
20
21         be->be_private = si;
22 }