diff options
author | pst <pst@FreeBSD.org> | 1996-02-06 18:48:03 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-02-06 18:48:03 +0000 |
commit | 2dfb2421458a36326af35171e59f21fbf98ab24f (patch) | |
tree | c1903fdee7453f11d3fa4191f8554ffd10a6988f /usr.sbin | |
parent | 6bc6f4a20eefa5573ab79c17302d04c568a5ae31 (diff) | |
download | FreeBSD-src-2dfb2421458a36326af35171e59f21fbf98ab24f.zip FreeBSD-src-2dfb2421458a36326af35171e59f21fbf98ab24f.tar.gz |
Setproctitle some useful information
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/sup/supfilesrv/supfilesrv.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.sbin/sup/supfilesrv/supfilesrv.c b/usr.sbin/sup/supfilesrv/supfilesrv.c index ee345a6..bd220fa 100644 --- a/usr.sbin/sup/supfilesrv/supfilesrv.c +++ b/usr.sbin/sup/supfilesrv/supfilesrv.c @@ -42,6 +42,9 @@ * across the network to save BandWidth * * $Log: supfilesrv.c,v $ + * Revision 1.2 1995/12/26 05:03:11 peter + * Apply ports/net/sup/patches/patch-aa... + * * Revision 1.1.1.1 1995/12/26 04:54:48 peter * Import the unmodified version of the sup that we are using. * The heritage of this version is not clear. It appears to be NetBSD @@ -843,6 +846,8 @@ setup () #endif if (release == NULL) release = salloc (DEFRELEASE); + setproctitle("supfilesrv: serving %s/%s to %s", + collname, release, remotehost()); if (basedir == NULL || *basedir == '\0') { basedir = NULL; (void) sprintf (buf,FILEDIRS,DEFDIR); |