search for: qsl

Displaying 20 results from an estimated 60 matches for "qsl".

Did you mean: lsl
2002 Apr 15
3
Initial debug of client - Need command line help
...ight options so that it will connect up to the local server with out fork() a copy of itself or trying to exec the rsh command. This is on RSYNC 2.5.5 on OpenVMS Alpha. If the OpenVMS lurkers on this list would like a ZIP archive of what I have so far, please let me know. Thanks, -John wb8tyw@qsl.network Personal Opinion Only
2003 Oct 12
7
rsync.h always including syslog.h even when not used.
...cluding the syslog.h file, even though it is only used when the LOG_DAEMON macro is defined. Could someone change it to be as follows: #ifdef LOG_DAEMON #include <syslog.h> #endif OpenVMS currently does not have a syslog facility, so it does not have a syslog.h. Thank you, -John wb8tyw@qsl.net Personal Opinion Only
2002 Jul 27
1
superlifter design notes (was Re: ...
...ust not have any loss of data, including any operating specific file attributes. That is why I posted previously that they should be designed as two separate but related programs. Each application has unique requirements that needlessly complicates an application that does both. -John wb8tyw@qsl.network Personal Opinion Only
2005 Feb 13
2
#include <inttypes.h> missing for 64 bit integers.
The Open Group Single Unix standard shows that the data types int64 and uint64 are defined in the inttypes.h header file. Rsync is not including this file, nor is there a feature test for this header file in the configure phase, but rsync is using these data types. -John wb8tyw@qsl.net Personal Opinion Only
2002 Jan 02
3
2.5.1pre3 - Bugs in configure script / config.h.in breaks build.
...fter they are ported. Instead, an OpenVMS DCL procedure is used to read the CONFIG.H.IN file and uses it to search the system libraries to see what routines and header definitions are present. This works very well when all of the "#undef" lines are in a standard format. -John wb8tyw@qsl.network Personal Opinion Only
2006 May 03
6
sql server, date and time
Hey there all, Is there some way to tell rails or sql server to ignore the time in a datetime field when doing a comparison? For example, if I do something like select * from users where registration_date = ?, @date where @date might equal some user input like ''03/14/2006'' The result is nothing returned, because in my tables the datetime field looks like this: 3/14/2006
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
...compiler efficiency. Because the gdiff -u was done against the distribution it includes the previous patch. The 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-s...
2002 Jul 21
5
superlifter design notes (OpenVMS perspective)
...nal note #3: For flexability, a client may need to provide filename translation, so the original filename (that will be used on the wire) should be stored as a file attribute. It also follows that it probably is a good idea to store the translated filename as an attribute also. -John wb8tyw@qsl.network Personal Opinion Only
2002 Nov 15
2
SPAM on List...
...nstead of permantently fatal, and the sender is on an ISP that responds to spam complaints, the e-mail would probably get posted that day. If the sender's ISP is not responding to spam complaints, it is likely that the sender is not having much luck getting anyone to accept their e-mail. QSL.NET also appears to use the spamcop blocking list. They are doing it because spam last year was costing them $30% of their internet costs. While most of you may pay a fixed rate for your e-mail, an ISP or a large company have to pay based on the amount of data transfered. With e-mail, a postm...
2003 Oct 28
4
simple compile
I could not find this question anywhere, but I apologize if it is and I just missed it. Running an Alpha, OSF1 V5.1 1885 configure went fine. compile failed: cc -I. -I. -g -DHAVE_CONFIG_H -I./popt -c lib/getaddrinfo.c -o lib/getaddrinfo.o cc: Error: lib/getaddrinfo.c, line 182: In this statement, "EAI_MAX" is not declared. (undeclared) if (ecode < 0 || ecode > EAI_MAX)
2023 May 05
1
Workaround for Bug 14927?
...Doesn't remedy the inconsistency. Is the information at the following link still valid? <https://support.microsoft.com/en-US/help/2838154/permissions-for-this-gpo-in-the-sysvol-folder-are-inconsistent-with-th> Any other ideas? Thank you in advance. Danke, -- Don, KB7RPU, https://www.qsl.net/kb7rpu There was a young lady named Bright Whose speed was far faster than light; She set out one day In a relative way And returned on the previous night.
2001 Aug 14
1
malloc() with out free() in popt (2.4.7pre)
...e if the alloca built-in equivalent function should be used. The more serious apparent bug, is that malloc() is being substituted for alloca() in the case that alloca.h is not present. No free() call seems to be done. Therefore the memory malloc() is lost until the program exits. -John wb8tyw@qsl.network Personal Opinion Only
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"
2002 Jan 07
0
rsync-2.5.1 / lib patches
...System: OpenVMS ALPHA V7.3 Compiler: Compaq C T6.5 Compiler switches: /WARN=ENABLE=(LEVEL4, QUESTCODE) fnmatch.c and mdfour.c. Compaq C on OpenVMS can not deal with relative path names in #include files. Also the local prototype for getenv() does not match the one in stdlib.h. -John wb8tyw@qsl.network Personal Opinion Only PROJECT_ROOT:[rsync_vms.LIB]FNMATCH.GDIFF;1 --- ref_lib:fnmatch.c Sat Jan 29 05:35:04 2000 +++ lcl_lib:fnmatch.c Sun Jan 6 08:42:06 2002 @@ -1,4 +1,9 @@ +/* Converted by prj_src:unix_c_to_vms_c.tpu AND prj_lib:fnmatch.tpu on 6-JAN-2 002 08:42:06.02 OPENVMS_AX...
2002 Jan 13
1
rsynd-2.5.1 / hlink.c patches
...LINK.C module. The cast on function argument for the qsort() routine was 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_...
2002 Jan 13
0
rsynd-2.5.1 / checksum.c patches
...(char) was being used where the usage indicated either (void) or (unsigned char) should be used. The const qualifier 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 */ /*...
2002 Feb 11
0
RSYNC 2.5.2 type mismatches in batch.c
Platform: OpenVMS Alpha 7.3 Compiler: Compaq C T6.5-002 on OpenVMS Alpha V7.3 Comile flags: /WARN=ENABLE=(LEVEL4, QUESTCODE) Best guess at UNIX equivalents of above compile flags: LEVEL4 = All warnings 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 @@...
2002 Jul 23
0
superlifter - Backup v.s. file distribution.
...ng security information. It may need to have attribute/information "meta" files to assist in delivering consistent cross platform information. I plan to post a bit more about that in response to some questions raised from my previous post about superlifter and OpenVMS. -John wb8tyw@qsl.network Personal Opinion Only
2003 Oct 14
1
Token.c appears to have a bug.
...o make sure that it happens before the most significant part of "n" is discarded? The actual assembly code generated is: LDL R10, n ; R10, 16(FP) SLL R10, 56, R10 SRA R10, 63, R10 STQ R10, temp_byte ; R10, 8(FP) -John wb8tyw@qsl.network Personal Opinion Only
2005 Feb 13
1
macro feature tests in rsync code
...th the HAVE_SOCKETPAIR macro, where in some places it is tested to see if the macro is defined, and other places to if it has a non zero value. I would rather not globally disable the diagnostic about undefined macros, as it has shown in the past to help find programming problems. -John wb8tyw@qsl.net Personal Opinion Only