From 9a2da81b11ad0064cca24ce7974827d032309369 Mon Sep 17 00:00:00 2001 From: tjpcc Date: Mon, 1 May 2023 07:56:25 -0600 Subject: name change gus -> sliderule --- finger/system.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'finger/system.go') diff --git a/finger/system.go b/finger/system.go index 4bcf573..aa2cc84 100644 --- a/finger/system.go +++ b/finger/system.go @@ -6,15 +6,15 @@ import ( "errors" "os/exec" - "tildegit.org/tjp/gus" + sr "tildegit.org/tjp/sliderule" ) // ListingDenied is returned to reject online user listing requests. var ListingDenied = errors.New("Finger online user list denied.") // SystemFinger handles finger requests by invoking the finger(1) command-line utility. -func SystemFinger(allowListings bool) gus.Handler { - return gus.HandlerFunc(func(ctx context.Context, request *gus.Request) *gus.Response { +func SystemFinger(allowListings bool) sr.Handler { + return sr.HandlerFunc(func(ctx context.Context, request *sr.Request) *sr.Response { fingerPath, err := exec.LookPath("finger") if err != nil { _ = request.Server.LogError( -- cgit v1.2.3