Deleted Added
full compact
main.c (73986) main.c (78732)
1/*
2 * Copyright (c) 1983, 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

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

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/4/95";
43#endif
44static const char rcsid[] =
1/*
2 * Copyright (c) 1983, 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

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

37 The Regents of the University of California. All rights reserved.\n";
38#endif /* not lint */
39
40#ifndef lint
41#if 0
42static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/4/95";
43#endif
44static const char rcsid[] =
45 "$FreeBSD: head/sbin/restore/main.c 73986 2001-03-08 09:04:40Z obrien $";
45 "$FreeBSD: head/sbin/restore/main.c 78732 2001-06-24 23:04:23Z dd $";
46#endif /* not lint */
47
48#include <sys/param.h>
49#include <sys/stat.h>
50
51#include <ufs/ufs/dinode.h>
52#include <protocols/dumprestore.h>
53
54#include <err.h>
55#include <paths.h>
56#include <stdio.h>
57#include <stdlib.h>
46#endif /* not lint */
47
48#include <sys/param.h>
49#include <sys/stat.h>
50
51#include <ufs/ufs/dinode.h>
52#include <protocols/dumprestore.h>
53
54#include <err.h>
55#include <paths.h>
56#include <stdio.h>
57#include <stdlib.h>
58#include <string.h>
58#include <unistd.h>
59
60#include "restore.h"
61#include "extern.h"
62
63int bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
64int hflag = 1, mflag = 1, Nflag = 0;
65int uflag = 0;

--- 307 unchanged lines hidden ---
59#include <unistd.h>
60
61#include "restore.h"
62#include "extern.h"
63
64int bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
65int hflag = 1, mflag = 1, Nflag = 0;
66int uflag = 0;

--- 307 unchanged lines hidden ---