Deleted Added
full compact
mount_msdosfs.c (2999) mount_msdosfs.c (4065)
1/*
2 * Copyright (c) 1994 Christopher G. Demetriou
3 * 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

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

24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef lint
1/*
2 * Copyright (c) 1994 Christopher G. Demetriou
3 * 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

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

24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31#ifndef lint
32static char rcsid[] = "$Id: mount_msdos.c,v 1.1 1994/09/19 15:30:36 dfr Exp $";
32static char rcsid[] = "$Id: mount_msdos.c,v 1.2 1994/09/22 22:16:35 wollman Exp $";
33#endif /* not lint */
34
35#include <sys/cdefs.h>
36#include <sys/param.h>
37#define MSDOSFS
38#include <sys/mount.h>
39#include <sys/stat.h>
40#include <ctype.h>

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

82 args.gid = a_gid(optarg);
83 set_gid = 1;
84 break;
85 case 'm':
86 args.mask = a_mask(optarg);
87 set_mask = 1;
88 break;
89 case 'o':
33#endif /* not lint */
34
35#include <sys/cdefs.h>
36#include <sys/param.h>
37#define MSDOSFS
38#include <sys/mount.h>
39#include <sys/stat.h>
40#include <ctype.h>

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

82 args.gid = a_gid(optarg);
83 set_gid = 1;
84 break;
85 case 'm':
86 args.mask = a_mask(optarg);
87 set_mask = 1;
88 break;
89 case 'o':
90 getmntopts(optarg, mopts, &mntflags);
90 getmntopts(optarg, mopts, &mntflags, 0);
91 break;
92 case '?':
93 default:
94 usage();
95 break;
96 }
97 }
98

--- 110 unchanged lines hidden ---
91 break;
92 case '?':
93 default:
94 usage();
95 break;
96 }
97 }
98

--- 110 unchanged lines hidden ---