Deleted Added
full compact
mount_nullfs.c (77031) mount_nullfs.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_null.c 8.6 (Berkeley) 4/26/95";
46#endif
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_null.c 8.6 (Berkeley) 4/26/95";
46#endif
47static const char rcsid[] =
48 "$FreeBSD: head/sbin/mount_nullfs/mount_nullfs.c 77031 2001-05-23 09:42:29Z ru $";
48 "$FreeBSD: head/sbin/mount_nullfs/mount_nullfs.c 77042 2001-05-23 14:58:19Z ru $";
49#endif /* not lint */
50
51#include <sys/param.h>
52#include <sys/mount.h>
53#include <fs/nullfs/null.h>
54
55#include <err.h>
56#include <stdio.h>

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

138
139 return (0);
140}
141
142static void
143usage()
144{
145 (void)fprintf(stderr,
49#endif /* not lint */
50
51#include <sys/param.h>
52#include <sys/mount.h>
53#include <fs/nullfs/null.h>
54
55#include <err.h>
56#include <stdio.h>

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

138
139 return (0);
140}
141
142static void
143usage()
144{
145 (void)fprintf(stderr,
146 "usage: mount_null [-o options] target_fs mount_point\n");
146 "usage: mount_nullfs [-o options] target_fs mount_point\n");
147 exit(1);
148}
147 exit(1);
148}