diff options
author | Ken Raeburn <raeburn@mit.edu> | 2006-05-24 16:18:53 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2006-05-24 16:18:53 +0000 |
commit | b2039aad70e01a64cb8265b053f7b0b98935e81a (patch) | |
tree | 0d2368339163b7d455e87eea1c50d866440a2cd4 /src/plugins/locate/python/py-locate.c | |
parent | c3833a42bb28559ac1d6f0c9b0af7a95bffd4fd6 (diff) | |
download | krb5-b2039aad70e01a64cb8265b053f7b0b98935e81a.tar.gz krb5-b2039aad70e01a64cb8265b053f7b0b98935e81a.tar.xz krb5-b2039aad70e01a64cb8265b053f7b0b98935e81a.zip |
Drop major version number from service-locator function table structure.
Add a typedef name for the structure. Change multiple-inclusion macro name.
Add a comment indicating desired symbol name.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@18036 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/plugins/locate/python/py-locate.c')
-rw-r--r-- | src/plugins/locate/python/py-locate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/locate/python/py-locate.c b/src/plugins/locate/python/py-locate.c index 54f87036da..d555dca859 100644 --- a/src/plugins/locate/python/py-locate.c +++ b/src/plugins/locate/python/py-locate.c @@ -305,9 +305,9 @@ lookup (void *blob, enum locate_service_type svc, const char *realm, return 0; } -const struct krb5plugin_service_locate_ftable service_locator = { +const krb5plugin_service_locate_ftable service_locator = { /* version */ - 1, 0, + 0, /* functions */ ctxinit, ctxfini, lookup, }; |