Home | History | Annotate | Line # | Download | only in mail
cmd2.c revision 1.13
      1  1.13       wiz /*	$NetBSD: cmd2.c,v 1.13 2002/03/02 15:27:51 wiz Exp $	*/
      2   1.5  christos 
      3   1.1       cgd /*
      4   1.3   deraadt  * Copyright (c) 1980, 1993
      5   1.3   deraadt  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36   1.8     lukem #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38   1.5  christos #if 0
     39   1.5  christos static char sccsid[] = "@(#)cmd2.c	8.1 (Berkeley) 6/6/93";
     40   1.5  christos #else
     41  1.13       wiz __RCSID("$NetBSD: cmd2.c,v 1.13 2002/03/02 15:27:51 wiz Exp $");
     42   1.5  christos #endif
     43   1.1       cgd #endif /* not lint */
     44   1.1       cgd 
     45   1.1       cgd #include "rcv.h"
     46   1.3   deraadt #include "extern.h"
     47   1.1       cgd 
     48   1.1       cgd /*
     49   1.1       cgd  * Mail -- a mail program
     50   1.1       cgd  *
     51   1.1       cgd  * More user commands.
     52   1.1       cgd  */
     53  1.11  christos extern int wait_status;
     54  1.12       wiz static int igcomp(const void *, const void *);
     55   1.1       cgd 
     56   1.1       cgd /*
     57   1.1       cgd  * If any arguments were given, go to the next applicable argument
     58   1.1       cgd  * following dot, otherwise, go to the next applicable message.
     59   1.1       cgd  * If given as first command with no arguments, print first message.
     60   1.1       cgd  */
     61   1.3   deraadt int
     62  1.12       wiz next(void *v)
     63   1.1       cgd {
     64   1.5  christos 	int *msgvec = v;
     65   1.8     lukem 	struct message *mp;
     66   1.8     lukem 	int *ip, *ip2;
     67   1.1       cgd 	int list[2], mdot;
     68   1.1       cgd 
     69   1.7        pk 	if (*msgvec != 0) {
     70   1.1       cgd 
     71   1.1       cgd 		/*
     72   1.7        pk 		 * If some messages were supplied, find the
     73   1.1       cgd 		 * first applicable one following dot using
     74   1.1       cgd 		 * wrap around.
     75   1.1       cgd 		 */
     76   1.1       cgd 
     77   1.1       cgd 		mdot = dot - &message[0] + 1;
     78   1.1       cgd 
     79   1.1       cgd 		/*
     80   1.1       cgd 		 * Find the first message in the supplied
     81   1.1       cgd 		 * message list which follows dot.
     82   1.1       cgd 		 */
     83   1.1       cgd 
     84   1.7        pk 		for (ip = msgvec; *ip != 0; ip++)
     85   1.1       cgd 			if (*ip > mdot)
     86   1.1       cgd 				break;
     87   1.7        pk 		if (*ip == 0)
     88   1.1       cgd 			ip = msgvec;
     89   1.1       cgd 		ip2 = ip;
     90   1.1       cgd 		do {
     91   1.1       cgd 			mp = &message[*ip2 - 1];
     92   1.1       cgd 			if ((mp->m_flag & MDELETED) == 0) {
     93   1.1       cgd 				dot = mp;
     94   1.1       cgd 				goto hitit;
     95   1.1       cgd 			}
     96   1.7        pk 			if (*ip2 != 0)
     97   1.1       cgd 				ip2++;
     98   1.7        pk 			if (*ip2 == 0)
     99   1.1       cgd 				ip2 = msgvec;
    100   1.1       cgd 		} while (ip2 != ip);
    101   1.1       cgd 		printf("No messages applicable\n");
    102   1.1       cgd 		return(1);
    103   1.1       cgd 	}
    104   1.1       cgd 
    105   1.1       cgd 	/*
    106   1.1       cgd 	 * If this is the first command, select message 1.
    107   1.1       cgd 	 * Note that this must exist for us to get here at all.
    108   1.1       cgd 	 */
    109   1.1       cgd 
    110   1.1       cgd 	if (!sawcom)
    111   1.1       cgd 		goto hitit;
    112   1.1       cgd 
    113   1.1       cgd 	/*
    114   1.1       cgd 	 * Just find the next good message after dot, no
    115   1.1       cgd 	 * wraparound.
    116   1.1       cgd 	 */
    117   1.1       cgd 
    118   1.1       cgd 	for (mp = dot+1; mp < &message[msgCount]; mp++)
    119   1.1       cgd 		if ((mp->m_flag & (MDELETED|MSAVED)) == 0)
    120   1.1       cgd 			break;
    121   1.1       cgd 	if (mp >= &message[msgCount]) {
    122   1.1       cgd 		printf("At EOF\n");
    123   1.1       cgd 		return(0);
    124   1.1       cgd 	}
    125   1.1       cgd 	dot = mp;
    126   1.1       cgd hitit:
    127   1.1       cgd 	/*
    128   1.1       cgd 	 * Print dot.
    129   1.1       cgd 	 */
    130   1.1       cgd 
    131   1.1       cgd 	list[0] = dot - &message[0] + 1;
    132   1.7        pk 	list[1] = 0;
    133   1.1       cgd 	return(type(list));
    134   1.1       cgd }
    135   1.1       cgd 
    136   1.1       cgd /*
    137   1.1       cgd  * Save a message in a file.  Mark the message as saved
    138   1.1       cgd  * so we can discard when the user quits.
    139   1.1       cgd  */
    140   1.3   deraadt int
    141  1.12       wiz save(void *v)
    142   1.1       cgd {
    143   1.5  christos 	char *str = v;
    144   1.1       cgd 
    145   1.1       cgd 	return save1(str, 1, "save", saveignore);
    146   1.1       cgd }
    147   1.1       cgd 
    148   1.1       cgd /*
    149   1.1       cgd  * Copy a message to a file without affected its saved-ness
    150   1.1       cgd  */
    151   1.3   deraadt int
    152  1.12       wiz copycmd(void *v)
    153   1.1       cgd {
    154   1.5  christos 	char *str = v;
    155   1.1       cgd 
    156   1.1       cgd 	return save1(str, 0, "copy", saveignore);
    157   1.1       cgd }
    158   1.1       cgd 
    159   1.1       cgd /*
    160   1.1       cgd  * Save/copy the indicated messages at the end of the passed file name.
    161  1.13       wiz  * If markmsg is true, mark the message "saved."
    162   1.1       cgd  */
    163   1.3   deraadt int
    164  1.13       wiz save1(char str[], int markmsg, char *cmd, struct ignoretab *ignoretabs)
    165   1.1       cgd {
    166   1.8     lukem 	int *ip;
    167   1.8     lukem 	struct message *mp;
    168  1.13       wiz 	char *fn, *disp;
    169   1.1       cgd 	int f, *msgvec;
    170   1.1       cgd 	FILE *obuf;
    171   1.1       cgd 
    172   1.1       cgd 	msgvec = (int *) salloc((msgCount + 2) * sizeof *msgvec);
    173  1.13       wiz 	if ((fn = snarf(str, &f)) == NOSTR)
    174   1.1       cgd 		return(1);
    175   1.1       cgd 	if (!f) {
    176   1.1       cgd 		*msgvec = first(0, MMNORM);
    177   1.7        pk 		if (*msgvec == 0) {
    178   1.1       cgd 			printf("No messages to %s.\n", cmd);
    179   1.1       cgd 			return(1);
    180   1.1       cgd 		}
    181   1.7        pk 		msgvec[1] = 0;
    182   1.1       cgd 	}
    183   1.1       cgd 	if (f && getmsglist(str, msgvec, 0) < 0)
    184   1.1       cgd 		return(1);
    185  1.13       wiz 	if ((fn = expand(fn)) == NOSTR)
    186   1.1       cgd 		return(1);
    187  1.13       wiz 	printf("\"%s\" ", fn);
    188   1.1       cgd 	fflush(stdout);
    189  1.13       wiz 	if (access(fn, 0) >= 0)
    190   1.1       cgd 		disp = "[Appended]";
    191   1.1       cgd 	else
    192   1.1       cgd 		disp = "[New file]";
    193  1.13       wiz 	if ((obuf = Fopen(fn, "a")) == NULL) {
    194   1.1       cgd 		perror(NOSTR);
    195   1.1       cgd 		return(1);
    196   1.1       cgd 	}
    197   1.1       cgd 	for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
    198   1.1       cgd 		mp = &message[*ip - 1];
    199   1.1       cgd 		touch(mp);
    200  1.13       wiz 		if (sendmessage(mp, obuf, ignoretabs, NOSTR) < 0) {
    201  1.13       wiz 			perror(fn);
    202   1.1       cgd 			Fclose(obuf);
    203   1.1       cgd 			return(1);
    204   1.1       cgd 		}
    205  1.13       wiz 		if (markmsg)
    206   1.1       cgd 			mp->m_flag |= MSAVED;
    207   1.1       cgd 	}
    208   1.1       cgd 	fflush(obuf);
    209   1.1       cgd 	if (ferror(obuf))
    210  1.13       wiz 		perror(fn);
    211   1.1       cgd 	Fclose(obuf);
    212   1.1       cgd 	printf("%s\n", disp);
    213   1.1       cgd 	return(0);
    214   1.1       cgd }
    215   1.1       cgd 
    216   1.1       cgd /*
    217   1.1       cgd  * Write the indicated messages at the end of the passed
    218   1.1       cgd  * file name, minus header and trailing blank line.
    219   1.1       cgd  */
    220   1.3   deraadt int
    221  1.12       wiz swrite(void *v)
    222   1.1       cgd {
    223   1.5  christos 	char *str = v;
    224   1.1       cgd 
    225   1.1       cgd 	return save1(str, 1, "write", ignoreall);
    226   1.1       cgd }
    227   1.1       cgd 
    228   1.1       cgd /*
    229   1.1       cgd  * Snarf the file from the end of the command line and
    230   1.1       cgd  * return a pointer to it.  If there is no file attached,
    231   1.1       cgd  * just return NOSTR.  Put a null in front of the file
    232   1.1       cgd  * name so that the message list processing won't see it,
    233   1.1       cgd  * unless the file name is the only thing on the line, in
    234   1.1       cgd  * which case, return 0 in the reference flag variable.
    235   1.1       cgd  */
    236   1.1       cgd 
    237   1.1       cgd char *
    238  1.12       wiz snarf(char linebuf[], int *flag)
    239   1.1       cgd {
    240   1.8     lukem 	char *cp;
    241   1.1       cgd 
    242   1.1       cgd 	*flag = 1;
    243   1.1       cgd 	cp = strlen(linebuf) + linebuf - 1;
    244   1.1       cgd 
    245   1.1       cgd 	/*
    246   1.1       cgd 	 * Strip away trailing blanks.
    247   1.1       cgd 	 */
    248   1.1       cgd 
    249   1.9  christos 	while (cp > linebuf && isspace((unsigned char)*cp))
    250   1.1       cgd 		cp--;
    251   1.1       cgd 	*++cp = 0;
    252   1.1       cgd 
    253   1.1       cgd 	/*
    254   1.1       cgd 	 * Now search for the beginning of the file name.
    255   1.1       cgd 	 */
    256   1.1       cgd 
    257   1.9  christos 	while (cp > linebuf && !isspace((unsigned char)*cp))
    258   1.1       cgd 		cp--;
    259   1.1       cgd 	if (*cp == '\0') {
    260   1.1       cgd 		printf("No file specified.\n");
    261   1.1       cgd 		return(NOSTR);
    262   1.1       cgd 	}
    263   1.9  christos 	if (isspace((unsigned char)*cp))
    264   1.1       cgd 		*cp++ = 0;
    265   1.1       cgd 	else
    266   1.1       cgd 		*flag = 0;
    267   1.1       cgd 	return(cp);
    268   1.1       cgd }
    269   1.1       cgd 
    270   1.1       cgd /*
    271   1.1       cgd  * Delete messages.
    272   1.1       cgd  */
    273   1.3   deraadt int
    274  1.12       wiz delete(void *v)
    275   1.1       cgd {
    276   1.5  christos 	int *msgvec = v;
    277   1.1       cgd 	delm(msgvec);
    278   1.1       cgd 	return 0;
    279   1.1       cgd }
    280   1.1       cgd 
    281   1.1       cgd /*
    282   1.1       cgd  * Delete messages, then type the new dot.
    283   1.1       cgd  */
    284   1.3   deraadt int
    285  1.12       wiz deltype(void *v)
    286   1.1       cgd {
    287   1.5  christos 	int *msgvec = v;
    288   1.1       cgd 	int list[2];
    289   1.1       cgd 	int lastdot;
    290   1.1       cgd 
    291   1.1       cgd 	lastdot = dot - &message[0] + 1;
    292   1.1       cgd 	if (delm(msgvec) >= 0) {
    293   1.1       cgd 		list[0] = dot - &message[0] + 1;
    294   1.1       cgd 		if (list[0] > lastdot) {
    295   1.1       cgd 			touch(dot);
    296   1.7        pk 			list[1] = 0;
    297   1.1       cgd 			return(type(list));
    298   1.1       cgd 		}
    299   1.1       cgd 		printf("At EOF\n");
    300   1.1       cgd 	} else
    301   1.1       cgd 		printf("No more messages\n");
    302   1.1       cgd 	return(0);
    303   1.1       cgd }
    304   1.1       cgd 
    305   1.1       cgd /*
    306   1.1       cgd  * Delete the indicated messages.
    307   1.1       cgd  * Set dot to some nice place afterwards.
    308   1.1       cgd  * Internal interface.
    309   1.1       cgd  */
    310   1.3   deraadt int
    311  1.12       wiz delm(int *msgvec)
    312   1.1       cgd {
    313   1.8     lukem 	struct message *mp;
    314   1.8     lukem 	int *ip;
    315   1.1       cgd 	int last;
    316   1.1       cgd 
    317   1.7        pk 	last = 0;
    318   1.7        pk 	for (ip = msgvec; *ip != 0; ip++) {
    319   1.1       cgd 		mp = &message[*ip - 1];
    320   1.1       cgd 		touch(mp);
    321   1.1       cgd 		mp->m_flag |= MDELETED|MTOUCH;
    322   1.1       cgd 		mp->m_flag &= ~(MPRESERVE|MSAVED|MBOX);
    323   1.1       cgd 		last = *ip;
    324   1.1       cgd 	}
    325   1.7        pk 	if (last != 0) {
    326   1.1       cgd 		dot = &message[last-1];
    327   1.1       cgd 		last = first(0, MDELETED);
    328   1.7        pk 		if (last != 0) {
    329   1.1       cgd 			dot = &message[last-1];
    330   1.1       cgd 			return(0);
    331   1.1       cgd 		}
    332   1.1       cgd 		else {
    333   1.1       cgd 			dot = &message[0];
    334   1.1       cgd 			return(-1);
    335   1.1       cgd 		}
    336   1.1       cgd 	}
    337   1.1       cgd 
    338   1.1       cgd 	/*
    339   1.1       cgd 	 * Following can't happen -- it keeps lint happy
    340   1.1       cgd 	 */
    341   1.1       cgd 
    342   1.1       cgd 	return(-1);
    343   1.1       cgd }
    344   1.1       cgd 
    345   1.1       cgd /*
    346   1.1       cgd  * Undelete the indicated messages.
    347   1.1       cgd  */
    348   1.3   deraadt int
    349  1.12       wiz undeletecmd(void *v)
    350   1.1       cgd {
    351   1.5  christos 	int *msgvec = v;
    352   1.8     lukem 	struct message *mp;
    353   1.8     lukem 	int *ip;
    354   1.1       cgd 
    355   1.1       cgd 	for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
    356   1.1       cgd 		mp = &message[*ip - 1];
    357   1.1       cgd 		touch(mp);
    358   1.1       cgd 		dot = mp;
    359   1.1       cgd 		mp->m_flag &= ~MDELETED;
    360   1.1       cgd 	}
    361   1.1       cgd 	return 0;
    362   1.1       cgd }
    363   1.1       cgd 
    364   1.1       cgd /*
    365   1.1       cgd  * Interactively dump core on "core"
    366   1.1       cgd  */
    367   1.3   deraadt int
    368  1.12       wiz core(void *v)
    369   1.1       cgd {
    370   1.1       cgd 	int pid;
    371   1.1       cgd 
    372   1.1       cgd 	switch (pid = vfork()) {
    373   1.1       cgd 	case -1:
    374   1.1       cgd 		perror("fork");
    375   1.1       cgd 		return(1);
    376   1.1       cgd 	case 0:
    377   1.1       cgd 		abort();
    378   1.1       cgd 		_exit(1);
    379   1.1       cgd 	}
    380   1.1       cgd 	printf("Okie dokie");
    381   1.1       cgd 	fflush(stdout);
    382   1.1       cgd 	wait_child(pid);
    383   1.9  christos 	if (WCOREDUMP(wait_status))
    384   1.1       cgd 		printf(" -- Core dumped.\n");
    385   1.1       cgd 	else
    386   1.1       cgd 		printf(" -- Can't dump core.\n");
    387   1.1       cgd 	return 0;
    388   1.1       cgd }
    389   1.1       cgd 
    390   1.1       cgd /*
    391   1.1       cgd  * Clobber as many bytes of stack as the user requests.
    392   1.1       cgd  */
    393   1.3   deraadt int
    394  1.12       wiz clobber(void *v)
    395   1.1       cgd {
    396   1.5  christos 	char **argv = v;
    397   1.8     lukem 	int times;
    398   1.1       cgd 
    399   1.1       cgd 	if (argv[0] == 0)
    400   1.1       cgd 		times = 1;
    401   1.1       cgd 	else
    402   1.1       cgd 		times = (atoi(argv[0]) + 511) / 512;
    403   1.1       cgd 	clob1(times);
    404   1.1       cgd 	return 0;
    405   1.1       cgd }
    406   1.1       cgd 
    407   1.1       cgd /*
    408   1.1       cgd  * Clobber the stack.
    409   1.1       cgd  */
    410   1.3   deraadt void
    411  1.12       wiz clob1(int n)
    412   1.1       cgd {
    413   1.1       cgd 	char buf[512];
    414   1.8     lukem 	char *cp;
    415   1.1       cgd 
    416   1.1       cgd 	if (n <= 0)
    417   1.1       cgd 		return;
    418   1.1       cgd 	for (cp = buf; cp < &buf[512]; *cp++ = 0xFF)
    419   1.1       cgd 		;
    420   1.1       cgd 	clob1(n - 1);
    421   1.1       cgd }
    422   1.1       cgd 
    423   1.1       cgd /*
    424   1.1       cgd  * Add the given header fields to the retained list.
    425   1.1       cgd  * If no arguments, print the current list of retained fields.
    426   1.1       cgd  */
    427   1.3   deraadt int
    428  1.12       wiz retfield(void *v)
    429   1.1       cgd {
    430   1.5  christos 	char **list = v;
    431   1.1       cgd 
    432   1.1       cgd 	return ignore1(list, ignore + 1, "retained");
    433   1.1       cgd }
    434   1.1       cgd 
    435   1.1       cgd /*
    436   1.1       cgd  * Add the given header fields to the ignored list.
    437   1.1       cgd  * If no arguments, print the current list of ignored fields.
    438   1.1       cgd  */
    439   1.3   deraadt int
    440  1.12       wiz igfield(void *v)
    441   1.1       cgd {
    442   1.5  christos 	char **list = v;
    443   1.1       cgd 
    444   1.1       cgd 	return ignore1(list, ignore, "ignored");
    445   1.1       cgd }
    446   1.1       cgd 
    447   1.3   deraadt int
    448  1.12       wiz saveretfield(void *v)
    449   1.1       cgd {
    450   1.5  christos 	char **list = v;
    451   1.1       cgd 
    452   1.1       cgd 	return ignore1(list, saveignore + 1, "retained");
    453   1.1       cgd }
    454   1.1       cgd 
    455   1.3   deraadt int
    456  1.12       wiz saveigfield(void *v)
    457   1.1       cgd {
    458   1.5  christos 	char **list = v;
    459   1.1       cgd 
    460   1.1       cgd 	return ignore1(list, saveignore, "ignored");
    461   1.1       cgd }
    462   1.1       cgd 
    463   1.3   deraadt int
    464  1.12       wiz ignore1(char *list[], struct ignoretab *tab, char *which)
    465   1.1       cgd {
    466   1.6     mikel 	char field[LINESIZE];
    467   1.8     lukem 	int h;
    468   1.8     lukem 	struct ignore *igp;
    469   1.1       cgd 	char **ap;
    470   1.1       cgd 
    471   1.1       cgd 	if (*list == NOSTR)
    472   1.1       cgd 		return igshow(tab, which);
    473   1.1       cgd 	for (ap = list; *ap != 0; ap++) {
    474   1.1       cgd 		istrcpy(field, *ap);
    475   1.1       cgd 		if (member(field, tab))
    476   1.1       cgd 			continue;
    477   1.1       cgd 		h = hash(field);
    478   1.1       cgd 		igp = (struct ignore *) calloc(1, sizeof (struct ignore));
    479   1.1       cgd 		igp->i_field = calloc((unsigned) strlen(field) + 1,
    480   1.1       cgd 			sizeof (char));
    481   1.1       cgd 		strcpy(igp->i_field, field);
    482   1.1       cgd 		igp->i_link = tab->i_head[h];
    483   1.1       cgd 		tab->i_head[h] = igp;
    484   1.1       cgd 		tab->i_count++;
    485   1.1       cgd 	}
    486   1.1       cgd 	return 0;
    487   1.1       cgd }
    488   1.1       cgd 
    489   1.1       cgd /*
    490   1.1       cgd  * Print out all currently retained fields.
    491   1.1       cgd  */
    492   1.3   deraadt int
    493  1.12       wiz igshow(struct ignoretab *tab, char *which)
    494   1.1       cgd {
    495   1.8     lukem 	int h;
    496   1.1       cgd 	struct ignore *igp;
    497   1.1       cgd 	char **ap, **ring;
    498   1.1       cgd 
    499   1.1       cgd 	if (tab->i_count == 0) {
    500   1.1       cgd 		printf("No fields currently being %s.\n", which);
    501   1.1       cgd 		return 0;
    502   1.1       cgd 	}
    503   1.1       cgd 	ring = (char **) salloc((tab->i_count + 1) * sizeof (char *));
    504   1.1       cgd 	ap = ring;
    505   1.1       cgd 	for (h = 0; h < HSHSIZE; h++)
    506   1.1       cgd 		for (igp = tab->i_head[h]; igp != 0; igp = igp->i_link)
    507   1.1       cgd 			*ap++ = igp->i_field;
    508   1.1       cgd 	*ap = 0;
    509   1.3   deraadt 	qsort(ring, tab->i_count, sizeof (char *), igcomp);
    510   1.1       cgd 	for (ap = ring; *ap != 0; ap++)
    511   1.1       cgd 		printf("%s\n", *ap);
    512   1.1       cgd 	return 0;
    513   1.1       cgd }
    514   1.1       cgd 
    515   1.1       cgd /*
    516   1.1       cgd  * Compare two names for sorting ignored field list.
    517   1.1       cgd  */
    518   1.5  christos static int
    519  1.12       wiz igcomp(const void *l, const void *r)
    520   1.1       cgd {
    521   1.3   deraadt 	return (strcmp(*(char **)l, *(char **)r));
    522   1.1       cgd }
    523