Deleted Added
full compact
fsinfo.c (38495) fsinfo.c (38500)
1/*
2 * Copyright (c) 1997-1998 Erez Zadok
3 * Copyright (c) 1989 Jan-Simon Pendry
4 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1989 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

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

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * %W% (Berkeley) %G%
40 *
1/*
2 * Copyright (c) 1997-1998 Erez Zadok
3 * Copyright (c) 1989 Jan-Simon Pendry
4 * Copyright (c) 1989 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1989 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by

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

33 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 * SUCH DAMAGE.
38 *
39 * %W% (Berkeley) %G%
40 *
41 * $Id: fsinfo.c,v 5.2.2.1 1992/02/09 15:09:33 jsp beta $
41 * $Id: fsinfo.c,v 1.1.1.1 1998/08/23 22:07:20 obrien Exp $
42 *
43 */
44
45/*
46 * fsinfo
47 */
48
49#ifdef HAVE_CONFIG_H

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

104 progname++;
105 else
106 progname = v[0];
107 }
108
109 if (!progname)
110 progname = "fsinfo";
111
42 *
43 */
44
45/*
46 * fsinfo
47 */
48
49#ifdef HAVE_CONFIG_H

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

104 progname++;
105 else
106 progname = v[0];
107 }
108
109 if (!progname)
110 progname = "fsinfo";
111
112 while ((ch = getopt(c, v, "a:b:d:e:f:h:m:D:U:I:qv")) != EOF)
112 while ((ch = getopt(c, v, "a:b:d:e:f:h:m:D:U:I:qv")) != -1)
113
114 switch (ch) {
115
116 case 'a':
117 autodir = optarg;
118 break;
119
120 case 'b':

--- 173 unchanged lines hidden ---
113
114 switch (ch) {
115
116 case 'a':
117 autodir = optarg;
118 break;
119
120 case 'b':

--- 173 unchanged lines hidden ---