#
 # A git daemon with an added userv security boundary.
 #
-# This reads the first packet-line of the protocol, checks the syntax
-# of the pathname and hostname, then uses userv to invoke the
-# git-upload-pack as the target user with safe arguments.
-#
 # This was written by Tony Finch <dot@dotat.at>
 # You may do anything with it, at your own risk.
 # http://creativecommons.org/publicdomain/zero/1.0/
 use Socket;
 use Sys::Syslog;
 
-use lib '/etc/userv';
+use lib '/etc/userv'; # for git-daemon-urlmap.pl
 
 sub ntoa {
     my $sockaddr = shift;