diff options
author | Tim Potter <tpot@samba.org> | 2003-02-21 04:53:39 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-02-21 04:53:39 +0000 |
commit | 38cb0a122f00a7a979b7c1c2642c8d647ae58a9b (patch) | |
tree | 51391ed329b3d2caa9f17cb33e05f6ccc7dc931c /source3 | |
parent | 9383d61f6c61ba8600ec73d22bd6f048c55a5261 (diff) | |
download | samba-38cb0a122f00a7a979b7c1c2642c8d647ae58a9b.tar.gz samba-38cb0a122f00a7a979b7c1c2642c8d647ae58a9b.tar.bz2 samba-38cb0a122f00a7a979b7c1c2642c8d647ae58a9b.zip |
Fixed another compiler warning.
(This used to be commit d15b7425d408f17505c4f3a91ec68bcfc4472c16)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_ads.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index d508320423..75bb29f213 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -110,7 +110,7 @@ static int net_ads_info(int argc, const char **argv) return 0; } -static void use_in_memory_ccache() { +static void use_in_memory_ccache(void) { /* Use in-memory credentials cache so we do not interfere with * existing credentials */ setenv(KRB5_ENV_CCNAME, "MEMORY:net_ads", 1); |