diff options
author | Steve Price <steve@FreeBSD.org> | 1999-12-27 21:35:55 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-12-27 21:35:55 +0000 |
commit | b10cce44e863e1d9498df160f773180e770d6dd3 (patch) | |
tree | 56d79250f6384e13788bd6f6a6f3284cb207adf8 /net/fspclient/files/patch-aj | |
parent | Updated to version 1.11.1+0.99.1.1 (diff) |
* Fixup MASTER_SITES
* Split patches one file per patch
* Whitespace nits
PR: 15720
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'net/fspclient/files/patch-aj')
-rw-r--r-- | net/fspclient/files/patch-aj | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net/fspclient/files/patch-aj b/net/fspclient/files/patch-aj new file mode 100644 index 000000000000..3b9b4bb9c05d --- /dev/null +++ b/net/fspclient/files/patch-aj @@ -0,0 +1,44 @@ +--- 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 + |