home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
relay
/
ihave.not.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-06-27
|
503b
|
36 lines
/*
* Reject the Usenet ihave/sendme control messages.
*/
#include <stdio.h>
#include <sys/types.h>
#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);
}