Deleted Added
full compact
amq.c (38495) amq.c (38500)
1/*
2 * Copyright (c) 1997-1998 Erez Zadok
3 * Copyright (c) 1990 Jan-Simon Pendry
4 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1990 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) 1990 Jan-Simon Pendry
4 * Copyright (c) 1990 Imperial College of Science, Technology & Medicine
5 * Copyright (c) 1990 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: amq.c,v 5.2.2.1 1992/02/09 15:09:16 jsp beta $
41 * $Id: amq.c,v 1.1.1.1 1998/08/23 22:07:20 obrien Exp $
42 *
43 */
44
45/*
46 * Automounter query tool
47 */
48
49#ifndef lint
50char copyright[] = "\
51@(#)Copyright (c) 1997-1998 Erez Zadok\n\
52@(#)Copyright (c) 1990 Jan-Simon Pendry\n\
53@(#)Copyright (c) 1990 Imperial College of Science, Technology & Medicine\n\
54@(#)Copyright (c) 1990 The Regents of the University of California.\n\
55@(#)All rights reserved.\n";
56#if __GNUC__ < 2
42 *
43 */
44
45/*
46 * Automounter query tool
47 */
48
49#ifndef lint
50char copyright[] = "\
51@(#)Copyright (c) 1997-1998 Erez Zadok\n\
52@(#)Copyright (c) 1990 Jan-Simon Pendry\n\
53@(#)Copyright (c) 1990 Imperial College of Science, Technology & Medicine\n\
54@(#)Copyright (c) 1990 The Regents of the University of California.\n\
55@(#)All rights reserved.\n";
56#if __GNUC__ < 2
57static char rcsid[] = "$Id: amq.c,v 6.0 1997-1998/01/01 15:09:16 ezk $";
57static char rcsid[] = "$Id: amq.c,v 1.1.1.1 1998/08/23 22:07:20 obrien Exp $";
58static char sccsid[] = "%W% (Berkeley) %G%";
59#endif /* __GNUC__ < 2 */
60#endif /* not lint */
61
62#ifdef HAVE_CONFIG_H
63# include <config.h>
64#endif /* HAVE_CONFIG_H */
65#include <am_defs.h>

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

325 progname = argv[0];
326 }
327 if (!progname)
328 progname = "amq";
329
330 /*
331 * Parse arguments
332 */
58static char sccsid[] = "%W% (Berkeley) %G%";
59#endif /* __GNUC__ < 2 */
60#endif /* not lint */
61
62#ifdef HAVE_CONFIG_H
63# include <config.h>
64#endif /* HAVE_CONFIG_H */
65#include <am_defs.h>

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

325 progname = argv[0];
326 }
327 if (!progname)
328 progname = "amq";
329
330 /*
331 * Parse arguments
332 */
333 while ((opt_ch = getopt(argc, argv, "fh:l:msuvx:D:M:pP:TU")) != EOF)
333 while ((opt_ch = getopt(argc, argv, "fh:l:msuvx:D:M:pP:TU")) != -1)
334 switch (opt_ch) {
335 case 'f':
336 flush_flag = 1;
337 nodefault = 1;
338 break;
339
340 case 'h':
341 def_server = optarg;

--- 597 unchanged lines hidden ---
334 switch (opt_ch) {
335 case 'f':
336 flush_flag = 1;
337 nodefault = 1;
338 break;
339
340 case 'h':
341 def_server = optarg;

--- 597 unchanged lines hidden ---