Deleted Added
full compact
main.c (114630) main.c (114911)
1/*
2 * Copyright (c) 1988, 1990, 1993
3 * The Regents of the University of California. 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

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

32 */
33
34#if 0
35#ifndef lint
36static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
37#endif
38#endif
39#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1988, 1990, 1993
3 * The Regents of the University of California. 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

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

32 */
33
34#if 0
35#ifndef lint
36static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
37#endif
38#endif
39#include <sys/cdefs.h>
40__FBSDID("$FreeBSD: head/contrib/telnet/telnet/main.c 114630 2003-05-04 02:54:49Z obrien $");
40__FBSDID("$FreeBSD: head/contrib/telnet/telnet/main.c 114911 2003-05-11 18:17:00Z markm $");
41
42#include <sys/types.h>
43#include <sys/socket.h>
44#include <stdlib.h>
45#include <string.h>
46#include <unistd.h>
47
48#include "ring.h"

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

208#else
209 autologin = 1;
210#endif
211 break;
212 case 'c':
213 skiprc = 1;
214 break;
215 case 'd':
41
42#include <sys/types.h>
43#include <sys/socket.h>
44#include <stdlib.h>
45#include <string.h>
46#include <unistd.h>
47
48#include "ring.h"

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

208#else
209 autologin = 1;
210#endif
211 break;
212 case 'c':
213 skiprc = 1;
214 break;
215 case 'd':
216 debug = 1;
216 telnet_debug = 1;
217 break;
218 case 'e':
219 set_escape_char(optarg);
220 break;
221 case 'f':
222#ifdef AUTHENTICATION
223#if defined(KRB5) && defined(FORWARD)
224 if (forward_flags & OPTS_FORWARD_CREDS) {

--- 149 unchanged lines hidden ---
217 break;
218 case 'e':
219 set_escape_char(optarg);
220 break;
221 case 'f':
222#ifdef AUTHENTICATION
223#if defined(KRB5) && defined(FORWARD)
224 if (forward_flags & OPTS_FORWARD_CREDS) {

--- 149 unchanged lines hidden ---