Deleted Added
full compact
systems.c (31962) systems.c (32663)
1/*
2 * System configuration routines
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
7 *
8 * Redistribution and use in source and binary forms are permitted
9 * provided that the above copyright notice and this paragraph are
10 * duplicated in all such forms and that any documentation,
11 * advertising materials, and other materials related to such
12 * distribution and use acknowledge that the software was developed
13 * by the Internet Initiative Japan, Inc. The name of the
14 * IIJ may not be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 *
1/*
2 * System configuration routines
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
7 *
8 * Redistribution and use in source and binary forms are permitted
9 * provided that the above copyright notice and this paragraph are
10 * duplicated in all such forms and that any documentation,
11 * advertising materials, and other materials related to such
12 * distribution and use acknowledge that the software was developed
13 * by the Internet Initiative Japan, Inc. The name of the
14 * IIJ may not be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 *
20 * $Id: systems.c,v 1.33 1997/12/21 03:41:23 brian Exp $
20 * $Id: systems.c,v 1.34 1997/12/24 09:29:17 brian Exp $
21 *
22 * TODO:
23 */
24#include <sys/param.h>
25#include <netinet/in.h>
26
27#include <ctype.h>
28#include <pwd.h>

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

34#include "command.h"
35#include "mbuf.h"
36#include "log.h"
37#include "id.h"
38#include "defs.h"
39#include "timer.h"
40#include "fsm.h"
41#include "loadalias.h"
21 *
22 * TODO:
23 */
24#include <sys/param.h>
25#include <netinet/in.h>
26
27#include <ctype.h>
28#include <pwd.h>

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

34#include "command.h"
35#include "mbuf.h"
36#include "log.h"
37#include "id.h"
38#include "defs.h"
39#include "timer.h"
40#include "fsm.h"
41#include "loadalias.h"
42#include "ipcp.h"
43#include "pathnames.h"
44#include "vars.h"
45#include "server.h"
42#include "pathnames.h"
43#include "vars.h"
44#include "server.h"
46#include "chat.h"
47#include "systems.h"
48
49#define issep(ch) ((ch) == ' ' || (ch) == '\t')
50
51FILE *
52OpenSecret(const char *file)
53{
54 FILE *fp;

--- 314 unchanged lines hidden ---
45#include "systems.h"
46
47#define issep(ch) ((ch) == ' ' || (ch) == '\t')
48
49FILE *
50OpenSecret(const char *file)
51{
52 FILE *fp;

--- 314 unchanged lines hidden ---