From 4e9e920143b4fa790ce5a4931bd034357950e9d5 Mon Sep 17 00:00:00 2001 From: siddharth Date: Sat, 30 Apr 2022 21:13:48 -0400 Subject: lib: update SRPClient Change session -> Session and make it pointer type. --- lib/srp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/srp.go') diff --git a/lib/srp.go b/lib/srp.go index cdecc4f..9997deb 100644 --- a/lib/srp.go +++ b/lib/srp.go @@ -64,7 +64,7 @@ type SRPUser struct { // SRP client. type SRPClient struct { - session SRPClientSession + Session *SRPClientSession } // User session on the SRP client. -- cgit v1.2.3