flush.c revision 233294
1259698Sdim/*
2259698Sdim * Copyright (c) 1997 Kungliga Tekniska H��gskolan
3353358Sdim * (Royal Institute of Technology, Stockholm, Sweden).
4353358Sdim * All rights reserved.
5353358Sdim *
6259698Sdim * Redistribution and use in source and binary forms, with or without
7259698Sdim * modification, are permitted provided that the following conditions
8259698Sdim * are met:
9259698Sdim *
10259698Sdim * 1. Redistributions of source code must retain the above copyright
11259698Sdim *    notice, this list of conditions and the following disclaimer.
12259698Sdim *
13259698Sdim * 2. Redistributions in binary form must reproduce the above copyright
14309124Sdim *    notice, this list of conditions and the following disclaimer in the
15259698Sdim *    documentation and/or other materials provided with the distribution.
16314564Sdim *
17327952Sdim * 3. Neither the name of the Institute nor the names of its contributors
18259698Sdim *    may be used to endorse or promote products derived from this software
19259698Sdim *    without specific prior written permission.
20321369Sdim *
21276479Sdim * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22259698Sdim * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23259698Sdim * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24259698Sdim * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25259698Sdim * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26276479Sdim * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27259698Sdim * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28259698Sdim * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29259698Sdim * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30280031Sdim * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31280031Sdim * SUCH DAMAGE.
32276479Sdim */
33259698Sdim
34259698Sdim#include "kadm5_locl.h"
35259698Sdim
36259698SdimRCSID("$Id$");
37259698Sdim
38259698Sdimkadm5_ret_t
39341825Sdimkadm5_s_flush(void *server_handle)
40259698Sdim{
41276479Sdim    return 0;
42259698Sdim}
43280031Sdim
44259698Sdimkadm5_ret_t
45314564Sdimkadm5_c_flush(void *server_handle)
46276479Sdim{
47314564Sdim    return 0;
48314564Sdim}
49314564Sdim