37 lines
1.2 KiB
Diff
37 lines
1.2 KiB
Diff
diff -ur ncpfs-2.2.6-orig/lib/ncplib.c ncpfs-2.2.6/lib/ncplib.c
|
|
--- a/lib/ncplib.c.orig 2006-01-13 16:55:05.000000000 -0500
|
|
+++ b/lib/ncplib.c 2006-01-13 16:56:08.000000000 -0500
|
|
@@ -2421,7 +2421,7 @@
|
|
int i = 1;
|
|
NWCCODE nwerr;
|
|
|
|
- static int get_argument(int arg_no, const char **target) {
|
|
+ int get_argument(int arg_no, const char **target) {
|
|
int count = 1;
|
|
|
|
if (target != NULL) {
|
|
diff -ur ncpfs-2.2.6-orig/util/nwpjmv.c ncpfs-2.2.6/util/nwpjmv.c
|
|
--- ncpfs-2.2.6-orig/util/nwpjmv.c 2006-01-13 16:55:05.000000000 -0500
|
|
+++ ncpfs-2.2.6/util/nwpjmv.c 2006-01-13 16:55:50.000000000 -0500
|
|
@@ -131,7 +131,7 @@
|
|
char *s = q->command;
|
|
char *target_end = target + target_size;
|
|
|
|
- static void add_string(const char *str)
|
|
+ void add_string(const char *str)
|
|
{
|
|
int len = strlen(str);
|
|
if (target + len + 1 > target_end)
|
|
diff -ur ncpfs-2.2.6-orig/util/pserver.c ncpfs-2.2.6/util/pserver.c
|
|
--- ncpfs-2.2.6-orig/util/pserver.c 2006-01-13 16:55:05.000000000 -0500
|
|
+++ ncpfs-2.2.6/util/pserver.c 2006-01-13 16:55:36.000000000 -0500
|
|
@@ -153,7 +153,7 @@
|
|
char *s = q->command;
|
|
char *target_end = target + target_size;
|
|
|
|
- static void add_string(const char *str)
|
|
+ void add_string(const char *str)
|
|
{
|
|
int len = strlen(str);
|
|
if (target + len + 1 > target_end)
|