aboutsummaryrefslogtreecommitdiffstats
path: root/token.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2004-06-18 16:22:14 +0000
committerWayne Davison <wayned@samba.org>2004-06-18 16:22:14 +0000
commitd67c8bdfc3007f3ae66c2383ccdec7ed3a58d1ce (patch)
treeaa4b84c10d2170820a73268921360e065aa03657 /token.c
parente2ccd3578c37d918be84b729422735376a7045a2 (diff)
downloadandroid_external_rsync-d67c8bdfc3007f3ae66c2383ccdec7ed3a58d1ce.tar.gz
android_external_rsync-d67c8bdfc3007f3ae66c2383ccdec7ed3a58d1ce.tar.bz2
android_external_rsync-d67c8bdfc3007f3ae66c2383ccdec7ed3a58d1ce.zip
Moved the externs to the top and made a few trivial format tweaks.
Diffstat (limited to 'token.c')
-rw-r--r--token.c35
1 files changed, 20 insertions, 15 deletions
diff --git a/token.c b/token.c
index da3a85b0..707512ef 100644
--- a/token.c
+++ b/token.c
@@ -1,17 +1,17 @@
-/*
+/*
Copyright (C) Andrew Tridgell 1996
Copyright (C) Paul Mackerras 1996
-
+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
@@ -21,23 +21,27 @@
#include "zlib/zlib.h"
extern int do_compression;
+extern int module_id;
+extern int write_batch;
+
static int compression_level = Z_DEFAULT_COMPRESSION;
/* determine the compression level based on a wildcard filename list */
void set_compression(char *fname)
{
- extern int module_id;
char *dont;
char *tok;
- if (!do_compression) return;
+ if (!do_compression)
+ return;
compression_level = Z_DEFAULT_COMPRESSION;
dont = lp_dont_compress(module_id);
- if (!dont || !*dont) return;
+ if (!dont || !*dont)
+ return;
- if ((dont[0] == '*') && (!dont[1])) {
+ if (dont[0] == '*' && !dont[1]) {
/* an optimization to skip the rest of this routine */
compression_level = 0;
return;
@@ -45,12 +49,13 @@ void set_compression(char *fname)
dont = strdup(dont);
fname = strdup(fname);
- if (!dont || !fname) return;
+ if (!dont || !fname)
+ return;
strlower(dont);
strlower(fname);
- for (tok=strtok(dont," ");tok;tok=strtok(NULL," ")) {
+ for (tok = strtok(dont, " "); tok; tok = strtok(NULL, " ")) {
if (wildmatch(tok, fname)) {
compression_level = 0;
break;
@@ -69,12 +74,14 @@ static int simple_recv_token(int f,char **data)
if (!buf) {
buf = new_array(char, CHUNK_SIZE);
- if (!buf) out_of_memory("simple_recv_token");
+ if (!buf)
+ out_of_memory("simple_recv_token");
}
if (residue == 0) {
int i = read_int(f);
- if (i <= 0) return i;
+ if (i <= 0)
+ return i;
residue = i;
}
@@ -90,7 +97,6 @@ static int simple_recv_token(int f,char **data)
static void simple_send_token(int f,int token,
struct map_struct *buf,OFF_T offset,int n)
{
- extern int write_batch;
int hold_int;
if (n > 0) {
@@ -159,7 +165,6 @@ send_deflated_token(int f, int token,
{
int n, r;
static int init_done, flush_pending;
- extern int write_batch;
char temp_byte;
if (last_token == -1) {
@@ -491,7 +496,7 @@ static void see_deflate_token(char *buf, int len)
/**
* Transmit a verbatim buffer of length @p n followed by a token.
- * If token == -1 then we have reached EOF
+ * If token == -1 then we have reached EOF
* If n == 0 then don't send a buffer
*/
void send_token(int f,int token,struct map_struct *buf,OFF_T offset,