summaryrefslogtreecommitdiffstats
path: root/source3/include/libsmbclient.h
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@dworkin.(none)>2009-05-11 14:16:52 -0400
committerDerrell Lipman <derrell@dworkin.(none)>2009-05-11 14:16:52 -0400
commitbd9d4e5212a4c1fcdf28d2abcee3ad24a27f2d03 (patch)
tree6a765ff38e701d8172c1c812be316af2b89dde88 /source3/include/libsmbclient.h
parent6d1e21bd1b38e8a3c7df3f7fdb8a17fcdd997d42 (diff)
downloadsamba-bd9d4e5212a4c1fcdf28d2abcee3ad24a27f2d03.tar.gz
samba-bd9d4e5212a4c1fcdf28d2abcee3ad24a27f2d03.tar.xz
samba-bd9d4e5212a4c1fcdf28d2abcee3ad24a27f2d03.zip
Correct typos; semicolons instead of commas
Diffstat (limited to 'source3/include/libsmbclient.h')
-rw-r--r--source3/include/libsmbclient.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/include/libsmbclient.h b/source3/include/libsmbclient.h
index 3b38b30c32f..7de5000615e 100644
--- a/source3/include/libsmbclient.h
+++ b/source3/include/libsmbclient.h
@@ -2783,24 +2783,24 @@ smbc_thread_impl(
/* Mutex functions. */
int (*create_mutex)(const char *lockname,
void **pplock,
- const char *location);
+ const char *location),
void (*destroy_mutex)(void *plock,
- const char *location);
+ const char *location),
int (*lock_mutex)(void *plock,
int lock_type,
- const char *location);
+ const char *location),
/* Thread local storage. */
int (*create_tls)(const char *keyname,
void **ppkey,
- const char *location);
+ const char *location),
void (*destroy_tls)(void **ppkey,
- const char *location);
+ const char *location),
int (*set_tls)(void *pkey,
const void *pval,
- const char *location);
+ const char *location),
void *(*get_tls)(void *pkey,
- const char *location);
+ const char *location)
);