1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-27 21:29:02 +00:00
freebsd-ports/net/fspclient/files/patch-aj
Steve Price b10cce44e8 * Fixup MASTER_SITES
* Split patches one file per patch
* Whitespace nits

PR:		15720
Submitted by:	KATO Tsuguru <tkato@prontomail.ne.jp>
1999-12-27 21:35:55 +00:00

45 lines
1006 B
Plaintext

--- client.0.0-h+/remote/rget.c.orig Mon May 3 11:31:20 1993
+++ client.0.0-h+/remote/rget.c Mon Dec 27 20:53:08 1999
@@ -36,7 +36,7 @@
static int recursive;
typedef enum { GET_WHOLE, GET_HEAD, GET_MIDDLE, GET_TAIL } GetOp;
-static GetOp getmode;
+static GetOp _getmode;
static int
#ifndef ANSI_PROTOTYPES
@@ -87,7 +87,7 @@
else
remname = name;
- switch (getmode)
+ switch (_getmode)
{
case GET_WHOLE:
if (access(path, W_OK) == 0)
@@ -304,11 +304,11 @@
errcnt = 0;
if (strcmp(argv[0], "head") == 0)
- getmode = GET_HEAD;
+ _getmode = GET_HEAD;
else if (strcmp(argv[0], "tail") == 0)
- getmode = GET_TAIL;
+ _getmode = GET_TAIL;
else
- getmode = GET_WHOLE;
+ _getmode = GET_WHOLE;
while ((ch = getopt(argc, argv, "ftnr")) != EOF)
switch (ch)
@@ -326,7 +326,7 @@
return 1;
#if 0
- if (getmode == GET_WHOLE && (frompos != 0 || getlen XXX))
+ if (_getmode == GET_WHOLE && (frompos != 0 || getlen XXX))
;
#endif