Deleted Added
full compact
query.c (183770) query.c (194089)
1/*-
2 * Copyright (c) 2005 Michael Bushkov <bushman@rsu.ru>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2005 Michael Bushkov <bushman@rsu.ru>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 12 unchanged lines hidden (view full) ---

21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/usr.sbin/nscd/query.c 183770 2008-10-12 00:44:27Z delphij $");
29__FBSDID("$FreeBSD: head/usr.sbin/nscd/query.c 194089 2009-06-13 00:06:52Z des $");
30
31#include <sys/types.h>
30
31#include <sys/types.h>
32#include <sys/event.h>
32#include <sys/socket.h>
33#include <sys/time.h>
33#include <sys/socket.h>
34#include <sys/time.h>
34#include <sys/event.h>
35
35#include <assert.h>
36#include <errno.h>
37#include <nsswitch.h>
38#include <stdio.h>
39#include <stdlib.h>
40#include <string.h>
36#include <assert.h>
37#include <errno.h>
38#include <nsswitch.h>
39#include <stdio.h>
40#include <stdlib.h>
41#include <string.h>
42#include <unistd.h>
43
41#include "config.h"
42#include "debug.h"
43#include "query.h"
44#include "log.h"
45#include "mp_ws_query.h"
46#include "mp_rs_query.h"
47#include "singletons.h"
48

--- 1220 unchanged lines hidden ---
44#include "config.h"
45#include "debug.h"
46#include "query.h"
47#include "log.h"
48#include "mp_ws_query.h"
49#include "mp_rs_query.h"
50#include "singletons.h"
51

--- 1220 unchanged lines hidden ---