search for: xbuf

Displaying 4 results from an estimated 4 matches for "xbuf".

Did you mean: buf
2007 Nov 12
3
DO NOT REPLY [Bug 5075] New: Syncing with --iconv may yield protocol error
...f (convert && ic_send == (iconv_t)-1) #endif convert = 0; #ifdef ICONV_OPTION /* We need to convert buf before doing anything else so that we * can include the (converted) byte length in the message header. */ if (convert) { xbuf outbuf, inbuf; INIT_XBUF(outbuf, buffer + 4, 0, sizeof(buffer) - 4); INIT_XBUF(inbuf, (char*)buf, len, -1); iconvbufs(ic_send, &inbuf, &outbuf, ICB_INCLUDE_BAD | ICB_INCLUDE_INCOMPLETE); if...
2007 Sep 18
1
DO NOT REPLY [Bug 4981] New: iconv confusion
...ake dies with: gcc -std=gnu99 -g -O2 -DMAINTAINER_MODE -DHAVE_CONFIG_H -Wall -W -I./popt -o mkrounding -I. ./mkrounding.c In file included from ./rsync.h:839, from ./mkrounding.c:20: ./proto.h:258: error: parse error before 'ic' proto.h:258 is: int iconvbufs(iconv_t ic, xbuf *in, xbuf *out, int flags); Apparently iconv_t isn't getting defined. iconv_t is part of the iconv library and iconv.h. In rsync.h:368 iconv.h is conditionalized by this line: #if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H #include <iconv.h> After a little experimentation...
2015 Jun 17
8
[Bug 11338] New: Rsync Crash - Segmentation fault
https://bugzilla.samba.org/show_bug.cgi?id=11338 Bug ID: 11338 Summary: Rsync Crash - Segmentation fault Product: rsync Version: 3.1.1 Hardware: x64 OS: Linux Status: NEW Severity: normal Priority: P5 Component: core Assignee: wayned at samba.org Reporter:
2011 Nov 16
0
Injecting source reference from external editors (emacs).
...?) a more direct way of doing this without encapsulation? Currently when a function "tf<-function(a){a^5}" is created at R prompt, R associates with it a srcref with empty srcfile reference. I wonder if it would be possible to instruct R that next evaluation will be from buffer "Xbuf" at line N, something like setSrcSource(srcobject="buffX", srcline=45) so that any input that follows, would get a srcref pointing to "buffX" starting from line 45 instead of just empty reference? At the end of the evaluation I would just reset R with setSrcSource(NULL)...