search for: lcl_src

Displaying 7 results from an estimated 7 matches for "lcl_src".

Did you mean: l_src
2002 Jan 07
1
rsync-2.5.1 / socket.c - unititialized variable breaks build.
In socket.c, the variable error is unitilialzed. Also the variable length should be an unsigned int. EAGLE> type socket.gdiff --- ref_src:socket.c Sat Jan 5 13:27:07 2002 +++ lcl_src:socket.c Sun Jan 6 08:40:51 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_src:socket.tpu on 6-JAN-20 02 08:40:51.01 OPENVMS_AXP */ /* -*- c-file-style: "linux" -*- Copyright (C) 1992-2001 by Andrew Tridgell <tridge@samba.org> @@ -105,7 +106,8...
2002 Jan 13
1
rsynd-2.5.1 / hlink.c patches
...s wrong, and not allowing the compile to complete. When the function definiton of the hlink_compare() is corrected to have the const qualifiers, the cast inside the qsort() function call is no longer needed. -John wb8tyw@qsl.network Personal Opinion Only EAGLE> gdiff -u ref_src:hlink.c lcl_src:hlink.c_unix --- ref_src:hlink.c Sat Jan 5 13:27:03 2002 +++ lcl_src:hlink.c_unix Sat Jan 12 19:28:00 2002 @@ -23,7 +23,8 @@ extern int verbose; #if SUPPORT_HARD_LINKS -static int hlink_compare(struct file_struct *f1,struct file_struct *f2) +static int hlink_compare + (const stru...
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
...functions with no parameters were missing the void parameter. The type (char) was being used where the usage indicated either (void) or (unsigned char) should be used. -John wb8tyw@qsl.network Personal Opinion Only EAGLE> type batch.gdiff --- ref_src:batch.c Sat Jan 5 13:27:01 2002 +++ lcl_src:batch.c Sat Jan 12 21:21:52 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:BATCH.TPU on 12-JAN-2002 21:21:52.41 OPENVMS_AXP */ /* -*- c-file-style: "linux" -*- Weiss 1/1999 @@ -22,7 +23,7 @@ struct file_list *batch_flist; -void create_batch_...
2002 Jan 13
0
rsynd-2.5.1 / checksum.c patches
...was added to impove compiler efficiency. There may be more cases in this module where type (char) is being used instead of what appears should be (unsigned char). -John wb8tyw@qsl.network Personal Opinion Only EAGLE> type checksum.gdiff --- ref_src:checksum.c Sat Jan 5 13:27:01 2002 +++ lcl_src:checksum.c Sun Jan 6 22:41:06 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:CHECKSUM.TPU on 6-JAN-2002 22:41:06.45 OPENVMS_AXP */ /* Copyright (C) Andrew Tridgell 1996 Copyright (C) Paul Mackerras 1996 @@ -30,7 +31,7 @@ a simple 32 bit checksum t...
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
...s QUESTCODE = Do LINT processing on source. -John wb8tyw@qsl.network Personal Opinion Only batch.c (char *) is being used as a type, when a generic structure is being passed. (void *) appears to be what is needed. EAGLE> type batch.gdiff --- ref_src:batch.c Sat Feb 9 21:17:28 2002 +++ lcl_src:batch.c Sat Feb 9 23:09:27 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:BATCH.TPU on 9-FEB-2002 23:09:26.95 OPENVMS_AXP */ /* -*- c-file-style: "linux" -*- Weiss 1/1999 @@ -22,7 +23,7 @@ struct file_list *batch_flist; -void create_batch_f...
2002 Jan 07
0
rsync-2.5.1 / updated syscall.c "const" patch
...nctions. This patch should supercede the previous patch I submitted. This was discovered while working on resovling the conflicts between signed and unsigned values. -John wb8tyw@qsl.network Personal Opinion Only EAGLE> type syscall.gdiff --- ref_src:syscall.c Sat Jan 5 13:27:07 2002 +++ lcl_src:syscall.c Sun Jan 6 23:12:41 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_src:syscall.tpu on 6-JAN-2 002 23:12:41.17 OPENVMS_AXP */ /* Copyright (C) Andrew Tridgell 1998 @@ -28,22 +29,24 @@ #define CHECK_RO if (read_only || list_only) {errno = EROFS; re...
2002 Jan 13
0
rsynd-2.5.1 / io.c patches
...ed where (void) was more appropriate based on the actual use of the code. The (char) type was also being used where the usage was actually an (unsigned char). const qualifiers were added to improve compile efficiency. EAGLE> type io.gdiff --- ref_src:io.c Sat Jan 5 13:27:04 2002 +++ lcl_src:io.c Sat Jan 12 18:29:18 2002 @@ -1,3 +1,4 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND PRJ_SRC:IO.TPU on 12-JAN-2002 18:29:18.32 OPENVMS_AXP */ /* -*- c-file-style: "linux" -*- Copyright (C) 1996-2001 by Andrew Tridgell @@ -49,7 +50,7 @@ static int io_error_fd =...