diff options
author | Günther Deschner <gd@samba.org> | 2011-10-25 12:38:41 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-10-25 17:57:25 +0200 |
commit | ef87630594d8fcd3305ad0cde8b17f330c7adfff (patch) | |
tree | d1979d77173e6c460680a0848758da1bdd485be6 /testsuite/libsmbclient/src/write | |
parent | 242292d4deefadb14f96af46a1461fc694fad2f4 (diff) | |
download | samba-ef87630594d8fcd3305ad0cde8b17f330c7adfff.tar.gz samba-ef87630594d8fcd3305ad0cde8b17f330c7adfff.tar.bz2 samba-ef87630594d8fcd3305ad0cde8b17f330c7adfff.zip |
s3-libsmbclient: make some functions static in testsuite code.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Tue Oct 25 17:57:25 CEST 2011 on sn-devel-104
Diffstat (limited to 'testsuite/libsmbclient/src/write')
-rw-r--r-- | testsuite/libsmbclient/src/write/write_1.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_10.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_11.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_12.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_13.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_2.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_3.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_4.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_5.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_6.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_7.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_8.c | 2 | ||||
-rw-r--r-- | testsuite/libsmbclient/src/write/write_9.c | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/testsuite/libsmbclient/src/write/write_1.c b/testsuite/libsmbclient/src/write/write_1.c index fa147f8f50..9cc80df763 100644 --- a/testsuite/libsmbclient/src/write/write_1.c +++ b/testsuite/libsmbclient/src/write/write_1.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_10.c b/testsuite/libsmbclient/src/write/write_10.c index 1f43c60bb7..3796dad40f 100644 --- a/testsuite/libsmbclient/src/write/write_10.c +++ b/testsuite/libsmbclient/src/write/write_10.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_11.c b/testsuite/libsmbclient/src/write/write_11.c index 3f9ae3f97d..413b35d587 100644 --- a/testsuite/libsmbclient/src/write/write_11.c +++ b/testsuite/libsmbclient/src/write/write_11.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_12.c b/testsuite/libsmbclient/src/write/write_12.c index 3528dbb36e..6d21f889db 100644 --- a/testsuite/libsmbclient/src/write/write_12.c +++ b/testsuite/libsmbclient/src/write/write_12.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_13.c b/testsuite/libsmbclient/src/write/write_13.c index f3c2ad5bc3..9780646451 100644 --- a/testsuite/libsmbclient/src/write/write_13.c +++ b/testsuite/libsmbclient/src/write/write_13.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_2.c b/testsuite/libsmbclient/src/write/write_2.c index 49763ebe0c..eed3eea284 100644 --- a/testsuite/libsmbclient/src/write/write_2.c +++ b/testsuite/libsmbclient/src/write/write_2.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_3.c b/testsuite/libsmbclient/src/write/write_3.c index 254782946d..c91b08a76c 100644 --- a/testsuite/libsmbclient/src/write/write_3.c +++ b/testsuite/libsmbclient/src/write/write_3.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_4.c b/testsuite/libsmbclient/src/write/write_4.c index 6ee585f021..0a1c33740f 100644 --- a/testsuite/libsmbclient/src/write/write_4.c +++ b/testsuite/libsmbclient/src/write/write_4.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_5.c b/testsuite/libsmbclient/src/write/write_5.c index 84cb50123c..6b21177c4d 100644 --- a/testsuite/libsmbclient/src/write/write_5.c +++ b/testsuite/libsmbclient/src/write/write_5.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_6.c b/testsuite/libsmbclient/src/write/write_6.c index c139ff8137..d92e13b1e6 100644 --- a/testsuite/libsmbclient/src/write/write_6.c +++ b/testsuite/libsmbclient/src/write/write_6.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_7.c b/testsuite/libsmbclient/src/write/write_7.c index bc509f1efd..acbcf57539 100644 --- a/testsuite/libsmbclient/src/write/write_7.c +++ b/testsuite/libsmbclient/src/write/write_7.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_8.c b/testsuite/libsmbclient/src/write/write_8.c index acc20f1958..da2ae12e77 100644 --- a/testsuite/libsmbclient/src/write/write_8.c +++ b/testsuite/libsmbclient/src/write/write_8.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { diff --git a/testsuite/libsmbclient/src/write/write_9.c b/testsuite/libsmbclient/src/write/write_9.c index b707d5c688..606bf642dd 100644 --- a/testsuite/libsmbclient/src/write/write_9.c +++ b/testsuite/libsmbclient/src/write/write_9.c @@ -12,7 +12,7 @@ char g_server[MAX_BUFF_SIZE]; char g_share[MAX_BUFF_SIZE]; -void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, +static void auth_fn(const char *server, const char *share, char *workgroup, int wgmaxlen, char *username, int unmaxlen, char *password, int pwmaxlen) { |