diff options
author | Gerald Carter <jerry@samba.org> | 2003-12-11 15:35:11 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-12-11 15:35:11 +0000 |
commit | 2719275ebfdfc0dfc460c9d29c51e8968039602e (patch) | |
tree | a06300b4feed27c429779682a0b136113e4627e4 /source3/nsswitch | |
parent | 05fcb6927028a6dd3e4029a0bf95821c3f246475 (diff) | |
download | samba-2719275ebfdfc0dfc460c9d29c51e8968039602e.tar.gz samba-2719275ebfdfc0dfc460c9d29c51e8968039602e.tar.xz samba-2719275ebfdfc0dfc460c9d29c51e8968039602e.zip |
fixed bad formal parameter type in get_static(); patch Andy Polyakov
(This used to be commit 9c70e4b44e0dda8f2af4172b928437bd9d3e8b7c)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/wins.c | 2 |
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; |