summaryrefslogtreecommitdiff
path: root/source3/nsswitch/wins.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-12-11 15:35:44 +0000
committerGerald Carter <jerry@samba.org>2003-12-11 15:35:44 +0000
commitda3a5ad98a03565525b496642a82c570af64f0b2 (patch)
treebb34bfd6c9d7f46fbcb448f4b5eb68d5a0e50183 /source3/nsswitch/wins.c
parentef1c713322ea1f4e994c262192f1b8c3518cc8c7 (diff)
downloadsamba-da3a5ad98a03565525b496642a82c570af64f0b2.tar.gz
samba-da3a5ad98a03565525b496642a82c570af64f0b2.tar.bz2
samba-da3a5ad98a03565525b496642a82c570af64f0b2.zip
fixed bad formal parameter type in get_static(); patch Andy Polyakov
(This used to be commit 67d893701f09f29e8af56cd98f04131658b39713)
Diffstat (limited to 'source3/nsswitch/wins.c')
-rw-r--r--source3/nsswitch/wins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wins.c b/source3/nsswitch/wins.c
index 0fc4e46cdb..779d1b2c6c 100644
--- a/source3/nsswitch/wins.c
+++ b/source3/nsswitch/wins.c
@@ -265,7 +265,7 @@ int lookup(nsd_file_t *rq)
are the pointers passed in by the C library to the _nss_*_*
functions. */
-static char *get_static(char **buffer, int *buflen, int len)
+static char *get_static(char **buffer, size_t *buflen, int len)
{
char *result;