aboutsummaryrefslogtreecommitdiffstats
path: root/authenticate.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-01-03 08:53:36 +0000
committerWayne Davison <wayned@samba.org>2004-01-03 08:53:36 +0000
commit57385128c3172a2b18b78718aea6d911d193f5d3 (patch)
tree77783bdf4a22471cb8bcd601340d32ec82398e9a /authenticate.c
parent2990e06f29fb2bc1147c3670ab9a090c0f6b53a1 (diff)
downloadandroid_external_rsync-57385128c3172a2b18b78718aea6d911d193f5d3.tar.gz
android_external_rsync-57385128c3172a2b18b78718aea6d911d193f5d3.tar.bz2
android_external_rsync-57385128c3172a2b18b78718aea6d911d193f5d3.zip
Made base64_encode() non-static.
Diffstat (limited to 'authenticate.c')
-rw-r--r--authenticate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/authenticate.c b/authenticate.c
index ef4f6af5..b147112a 100644
--- a/authenticate.c
+++ b/authenticate.c
@@ -24,7 +24,7 @@
encode a buffer using base64 - simple and slow algorithm. null terminates
the result.
***************************************************************************/
-static void base64_encode(char *buf, int len, char *out)
+void base64_encode(char *buf, int len, char *out)
{
char *b64 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
int bit_offset, byte_offset, idx, i;
@@ -33,7 +33,7 @@ static void base64_encode(char *buf, int len, char *out)
memset(out, 0, bytes+1);
- for (i=0;i<bytes;i++) {
+ for (i = 0; i < bytes; i++) {
byte_offset = (i*6)/8;
bit_offset = (i*6)%8;
if (bit_offset < 3) {