Deleted Added
full compact
mount_unionfs.c (77031) mount_unionfs.c (77042)
1/*
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)mount_union.c 8.5 (Berkeley) 3/27/94";
46#else
47static const char rcsid[] =
1/*
2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software donated to Berkeley by
6 * Jan-Simon Pendry.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "@(#)mount_union.c 8.5 (Berkeley) 3/27/94";
46#else
47static const char rcsid[] =
48 "$FreeBSD: head/sbin/mount_unionfs/mount_unionfs.c 77031 2001-05-23 09:42:29Z ru $";
48 "$FreeBSD: head/sbin/mount_unionfs/mount_unionfs.c 77042 2001-05-23 14:58:19Z ru $";
49#endif
50#endif /* not lint */
51
52#include <sys/param.h>
53#include <sys/mount.h>
54
55#include <fs/unionfs/union.h>
56

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

150
151 return (0);
152}
153
154void
155usage()
156{
157 (void)fprintf(stderr,
49#endif
50#endif /* not lint */
51
52#include <sys/param.h>
53#include <sys/mount.h>
54
55#include <fs/unionfs/union.h>
56

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

150
151 return (0);
152}
153
154void
155usage()
156{
157 (void)fprintf(stderr,
158 "usage: mount_union [-br] [-o options] target_fs mount_point\n");
158 "usage: mount_unionfs [-br] [-o options] target_fs mount_point\n");
159 exit(EX_USAGE);
160}
159 exit(EX_USAGE);
160}