search for: string_

Displaying 6 results from an estimated 6 matches for "string_".

Did you mean: string
2015 Oct 07
1
Re: [PATCH 5/5] mllib: Replace various ad hoc string_* functions with String.*
On Tuesday 06 October 2015 13:30:50 Richard W.M. Jones wrote: > This is just a straight refactoring. Various ad hoc string_* > functions that appeared in Common_utils have been renamed and placed > in the String.* namespace. The old vs "new" functions are: > > string_prefix -> String.is_prefix > string_suffix -> String.is_suffix > string_find -> String.find > replace_str...
2000 Mar 14
2
Bug in sub? (PR#487)
I suspect that there is bug in sub when using "?": > string_"This is a bug!" > sub("!", ", or isn't it?", string) [1] "This is a bug, or isn't it?" > string_"This is a bug?" > sub("?", ", or isn't it?", string) [1] "This is a bug?" Regards, *** D.Trenk...
2004 Aug 06
0
[PATCH] Configurable privileges and chroot jail
...========================================================== RCS file: /cvsroot/icecast/src/commands.c,v retrieving revision 1.26 diff -b -u -r1.26 commands.c --- src/commands.c 2000/11/01 21:32:35 1.26 +++ src/commands.c 2001/04/24 01:32:56 @@ -297,6 +297,8 @@ { "client_password", string_e, "<unimplemented> Client password", NULL }, { "admin_password", string_e, "The remote admin password", NULL }, { "oper_password", string_e, "Operator Password", NULL }, + { "chroot_dir", string_e,...
2015 Oct 06
0
[PATCH 5/5] mllib: Replace various ad hoc string_* functions with String.*
This is just a straight refactoring. Various ad hoc string_* functions that appeared in Common_utils have been renamed and placed in the String.* namespace. The old vs "new" functions are: string_prefix -> String.is_prefix string_suffix -> String.is_suffix string_find -> String.find replace_str -> String.replace string_nsplit...
2006 Mar 02
0
Problems Running an executable from samba share.
...x38bd80 > [2006/03/01 14:39:40, 3] smbd/trans2.c:call_trans2qfilepathinfo(2859) > call_trans2qfilepathinfo: TRANSACT2_QPATHINFO: level = 1004 > [2006/03/01 14:39:40, 3] smbd/trans2.c:call_trans2qfilepathinfo(2884) > call_trans2qfilepathinfo: SMB_VFS_STAT of > com/openacc/oa_start/string_e.ldl failed (No such file or directory) > [2006/03/01 14:39:40, 3] smbd/error.c:error_packet(146) > error packet at smbd/trans2.c(2627) cmd=50 (SMBtrans2) > NT_STATUS_OBJECT_NAME_NOT_FOUND > [2006/03/01 14:39:40, 3] smbd/process.c:process_smb(1194) > Transaction 604 of length 144...
2015 Oct 06
10
[PATCH 0/5] mllib: Hide bad String functions and miscellaneous refactoring.
Hide/prevent the use of bad string functions like String.lowercase. These are replaced by safe functions that won't break UTF-8 strings. Other miscellaneous refactoring. Rich.