search for: okuyama

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

2000 Jun 02
0
util_str.c patch
...most of the treatment can change to "memory" treating with length And "memory" treating is lot faster then "string" treating ( for "memory" treating do not need any "terminal character detection" ). regards, ---- Kenichi Okuyama --- /usr/local/src/samba/source/lib/util_str.c Wed Jan 26 09:12:35 2000 +++ ./util_str.c Fri Jun 2 22:15:13 2000 @@ -507,107 +507,112 @@ trim the specified elements off the front and back of a string ********************************************************************/ BOOL trim_string(char...
2019 Mar 16
0
[ANNOUNCE] xtrans 1.4.0
...oia (1): Update strlcpy macro check to also check HAVE_STRLCPY Julien Cristau (1): Make sure LONG64 is defined in Xtrans.h Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish Richard PALO (1): Replace 'sun' with '__sun' Rin Okuyama (1): avoid -Wformat errors from clang git tag: xtrans-1.4.0 https://xorg.freedesktop.org/archive/individual/lib/xtrans-1.4.0.tar.bz2 MD5: ce2fb8100c6647ee81451ebe388b17ad xtrans-1.4.0.tar.bz2 SHA1: 7c490026efb450798e02b040c05eba5212291c08 xtrans-1.4.0.tar.bz2 SHA256: 377c4491593c417946ef...
2019 Sep 14
0
[ANNOUNCE] libXfont2 2.0.4
...g atoms CatalogueRescan: if opendir() fails, unref fpes, but don't free the cat fs_read_glyphs: check if rep is null before dereferencing Add src/util/replace.h to noinst_HEADERS so it gets included in tarballs libXfont2 2.0.4 Maya Rashish (1): Fix whitespace Rin Okuyama (1): avoid -Wformat errors from clang when building with -DDEBUG git tag: libXfont2-2.0.4 https://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.4.tar.bz2 MD5: 00516bed7ec1453d56974560379fff2f libXfont2-2.0.4.tar.bz2 SHA1: 9e00ae7589315656435efaf330128facad7c4a57 libXfont2-2.0...
2000 May 02
0
patch for .samba-2.0.7/source/lib/bitmap.c
...i; - do { - if (!bitmap_query(bm, j)) return j; - j++; - } while (j & 31 && j < bm->n); - } - i += 32; - i &= ~31; - } +/* + * find bit with 1, from LSB. + * + * I first saw this hack at X11R3's source code. I don't know where it + * came from. --- Kenichi Okuyama. + */ +static int +find_bitmap_one( uint32 bitmaps ) +{ + uint32 only_lsb_is_one; + int result; - i = 0; - while (i < ofs) { - if (~(bm->b[i/32])) { - j = i; - do { - if (!bitmap_query(bm, j)) return j; - j++; - } while (j & 31 && j < bm->n); -...
2000 May 10
0
patche for samba-2.0.7/source/smbd/conn.c
...e no longer need it, or we can use it for another perpose ... like managing snum in some way better then simple search ). 3) I made entire "global" variable to single structure. do % patch -p0 < [The patch below] and you'll get patched conn.c. best regards, ---- Kenichi Okuyama@Tokyo Research Lab. IBM-Japan.Co. ---- Patch starts from line below ---- --- ./source/smbd/conn.c 2000/05/02 14:49:30 1.1 +++ ./source/smbd/conn.c 2000/05/08 16:23:12 @@ -25,165 +25,268 @@ /* set these to define the limits of the server. NOTE These are on a per-client basis. Thus any one m...
2019 Jun 21
0
[ANNOUNCE] libXt 1.2.0
...in: Don't build libXt with -flat_namespace Jon Turney (2): Fix WHITEFILL after const fixes Provide suseconds_t typedef on Win32 Mihail Konev (1): autogen: add default patch prefix Peter Hutterer (1): autogen.sh: use exec instead of waiting for configure to finish Rin Okuyama (1): avoid -Wformat errors from clang when building with -DDEBUG Thomas E. Dickey (134): fix build when XT_GEO_TATTLER is defined fix bug introduced by workaround for obsolete macro/command ".ny", in the manpages since late trim undefined symbol "D&quot...
2000 Apr 29
0
fix to lib/talloc.c
I added little changes to lib/talloc.c. With this patch, 1) calling malloc() within talloc.c will become 1/2( well, at least, nearly half ). 2) If you are using glibc2's malloc, then entire talloced space will be returned to system at talloc_destroy() time. # Original code has chance of keeping space for # 'struct talloc_chunk'. --- ./source/lib/talloc.c 2000/04/28