Skip to content

Commit 8c8dd35

Browse files
committed
fix(server): use the correct internal method name for server init
1 parent 1acfb20 commit 8c8dd35

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/kerberos.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,9 @@ function initializeServer(service, callback) {
8080
validateParameter(service, { name: 'service', type: 'string' });
8181
validateParameter(callback, { name: 'callback', type: 'function' });
8282

83-
kerberos.authGSSServerInit(service, callback);
83+
kerberos.initializeServer(service, callback);
8484
}
8585

86-
8786
/**
8887
* Destroys the context for GSSAPI client-side authentication.
8988
*

0 commit comments

Comments
 (0)