openbsd-ports/audio/opennap/patches/patch-download_c
naddy c208dc5df3 Update to 0.44 with some patches from CVS.
Notable changes to the port:
- creates opennap user/group to run as
- tons of bugfixes, improved performance
- no longer hardcodes SYSCONFDIR to /etc/opennap

Submitted by Jolan Luff <jolan@pellaeon.com>.
2002-08-10 01:14:04 +00:00

17 lines
453 B
Plaintext

$OpenBSD: patch-download_c,v 1.1 2002/08/10 01:14:04 naddy Exp $
--- download.c.orig Sat Sep 22 00:54:13 2001
+++ download.c Tue Oct 16 18:14:04 2001
@@ -35,6 +35,12 @@ HANDLER (download)
return;
}
+ if (sender->level == LEVEL_LEECH)
+ {
+ send_user (sender, MSG_SERVER_NOSUCH, "permission denied: you are a leech");
+ return;
+ }
+
/* find the user to download from */
user = hash_lookup (Users, av[0]);
if (!user)