diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-10-05 03:53:25 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-10-05 03:53:25 +0000 |
commit | f36d5c8bbfe4cfcbabb45d7004ed463f90c34f65 (patch) | |
tree | 420d00c8d95986a7fc76e48568de91a07fdc0f73 /source3/nmbd | |
parent | f6b9f31d9343a252a84e67635a1342b5ba33b21a (diff) | |
download | samba-f36d5c8bbfe4cfcbabb45d7004ed463f90c34f65.tar.gz samba-f36d5c8bbfe4cfcbabb45d7004ed463f90c34f65.tar.bz2 samba-f36d5c8bbfe4cfcbabb45d7004ed463f90c34f65.zip |
get type of callback right
(This used to be commit 327eba774e5bb17a91f80617bd7359afe0c83f48)
Diffstat (limited to 'source3/nmbd')
-rw-r--r-- | source3/nmbd/nmbd_synclists.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nmbd/nmbd_synclists.c b/source3/nmbd/nmbd_synclists.c index b6f54dccec..8dee5ca4f2 100644 --- a/source3/nmbd/nmbd_synclists.c +++ b/source3/nmbd/nmbd_synclists.c @@ -51,7 +51,7 @@ static FILE *fp; /******************************************************************* This is the NetServerEnum callback. ******************************************************************/ -static void callback(char *sname, uint32 stype, char *comment) +static void callback(const char *sname, uint32 stype, const char *comment) { fprintf(fp,"\"%s\" %08X \"%s\"\n", sname, stype, comment); } |