diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-09-05 00:43:54 -0600 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-09-05 00:43:54 -0600 |
commit | 955e8e2dc4bd7865f2b21139d61424a168e5a041 (patch) | |
tree | 89c135b5531d5562b84d250c78dc1422e4c0becf /src/nslcd_proto/enumerator@T.got | |
parent | 79f7c721b7275208bb2bef0fec87e1a732353b74 (diff) |
The way nslcd_proto's GenericGetNext was designed, nil checks didn't work
Diffstat (limited to 'src/nslcd_proto/enumerator@T.got')
-rw-r--r-- | src/nslcd_proto/enumerator@T.got | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nslcd_proto/enumerator@T.got b/src/nslcd_proto/enumerator@T.got index 023c774..cad54fa 100644 --- a/src/nslcd_proto/enumerator@T.got +++ b/src/nslcd_proto/enumerator@T.got @@ -2,7 +2,7 @@ package nslcd_proto type <T>_Enumerator interface { GetNext() (n *<T>, err error) - GenericGetNext() (n interface{}, err error) + GenericGetNext() (n *interface{}, err error) } // -*- Mode: Go -*- |