summaryrefslogtreecommitdiff
path: root/source3/libsmb/libsmb_compat.c
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2003-01-13 20:04:40 +0000
committerRichard Sharpe <sharpe@samba.org>2003-01-13 20:04:40 +0000
commit16925589eb1f12ebe6e493774fd4306a827feb73 (patch)
treec60abed080d00651e5f23060a78a1f3fb4613f33 /source3/libsmb/libsmb_compat.c
parent071af8f007efc20c23959d140a87cc09363aae83 (diff)
downloadsamba-16925589eb1f12ebe6e493774fd4306a827feb73.tar.gz
samba-16925589eb1f12ebe6e493774fd4306a827feb73.tar.bz2
samba-16925589eb1f12ebe6e493774fd4306a827feb73.zip
Now that I am running config.developer, I decided to get rif of some warnings:
1. reboot in parse_reg and cli_reg was shadowing a definition on FreeBSD 4.3 from system includes. 2. Added a bit of const to places. 3. Made sure internal functions were declared where needed. (This used to be commit fd847aa93690eb72f0437a8d22c03b222eb2a016)
Diffstat (limited to 'source3/libsmb/libsmb_compat.c')
-rw-r--r--source3/libsmb/libsmb_compat.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/source3/libsmb/libsmb_compat.c b/source3/libsmb/libsmb_compat.c
index bba90c648e..27b274953a 100644
--- a/source3/libsmb/libsmb_compat.c
+++ b/source3/libsmb/libsmb_compat.c
@@ -24,11 +24,7 @@
#include "includes.h"
-/*
- * Define this to get the real SMBCFILE and SMBCSRV structures
- */
-#define _SMBC_INTERNAL
-#include "../include/libsmbclient.h"
+#include "../include/libsmb_internal.h"
struct smbc_compat_fdlist {
SMBCFILE * file;
@@ -272,7 +268,7 @@ int smbc_open_print_job(const char *fname)
return (int) file;
}
-int smbc_list_print_jobs(const char *purl, smbc_get_print_job_info fn)
+int smbc_list_print_jobs(const char *purl, smbc_list_print_job_fn fn)
{
return statcont->list_print_jobs(statcont, purl, fn);
}