Deleted Added
full compact
compat.c (147005) compat.c (162856)
1/* $OpenBSD: compat.c,v 1.76 2006/08/03 03:34:42 deraadt Exp $ */
1/*
2 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */
24
25#include "includes.h"
2/*
3 * Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. 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
9 * notice, this list of conditions and the following disclaimer.

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

19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
26RCSID("$OpenBSD: compat.c,v 1.71 2005/03/01 10:09:52 djm Exp $");
27RCSID("$FreeBSD: head/crypto/openssh/compat.c 147005 2005-06-05 15:46:09Z des $");
27__RCSID("$FreeBSD: head/crypto/openssh/compat.c 162856 2006-09-30 13:38:06Z des $");
28
28
29#include <sys/types.h>
30
31#include <stdlib.h>
32#include <string.h>
33#include <stdarg.h>
34
35#include "xmalloc.h"
29#include "buffer.h"
30#include "packet.h"
36#include "buffer.h"
37#include "packet.h"
31#include "xmalloc.h"
32#include "compat.h"
33#include "log.h"
34#include "match.h"
35
36int compat13 = 0;
37int compat20 = 0;
38int datafellows = 0;
39

--- 191 unchanged lines hidden ---
38#include "compat.h"
39#include "log.h"
40#include "match.h"
41
42int compat13 = 0;
43int compat20 = 0;
44int datafellows = 0;
45

--- 191 unchanged lines hidden ---