home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
400-499
/
ff473.lzh
/
CNewsSrc
/
cnews_src.lzh
/
relay
/
ihave.not.c
< prev
next >
Wrap
C/C++ Source or Header
|
1990-05-28
|
552b
|
40 lines
/* :ts=4
* Reject the Usenet ihave/sendme control messages.
*
* $Log$
*/
#include <stdio.h>
#ifdef unix
# include <sys/types.h>
#endif /* unix */
#include "news.h"
#include "headers.h"
#include "article.h"
static void
ignore(cmd, args)
char *cmd, *args;
{
(void) fprintf(stderr, "%s: `%s %s' control ignored\n", progname, cmd, args);
}
/* ARGSUSED art */
void
ihave(args, art)
char *args;
struct article *art;
{
ignore("ihave", args);
}
/* ARGSUSED art */
void
sendme(args, art)
char *args;
struct article *art;
{
ignore("sendme", args);
}