search for: reg_extended

Displaying 14 results from an estimated 14 matches for "reg_extended".

2005 Feb 24
1
Compilation problem
...use in this function) client/clitar.c:1754: (Each undeclared identifier is reported only once client/clitar.c:1754: for each function it appears in.) client/clitar.c:1754: syntax error before `)' client/clitar.c:1760: `errcode' undeclared (first use in this function) client/clitar.c:1760: `REG_EXTENDED' undeclared (first use in this function) client/clitar.c: At top level: client/clitar.c:1775: syntax error before `if' *** Error code 1 Stop in /usr/local/src/samba-3.0.11/source. Is there a patch or something that i need to add to the source? I was surprised to see a syntax error; i w...
2007 Aug 23
1
[nut-commits] svn commit r1073 - in trunk: . drivers
...ion strings in regex_array[0..5], > - corresponding to: vendorid, productid, vendor, product, serial, > - bus. Any of these strings can be NULL, which matches > - everything. Cflags are as in regcomp(3). Typical values for cflags > - are REG_ICASE (case insensitive matching) and REG_EXTENDED (use > - extended regular expressions). On success, return 0 and store the > - matcher in *matcher. On error, return -1 with errno set, or return > - i=1--5 to indicate that the regular expression regex_array[i] was > - ill-formed (an error message can then be retrieved with &g...
2005 Feb 15
3
3.0.11 client/clitar.c Fails to Compile on RedHat and AIX
...error: (Each undeclared identifier is reported only once client/clitar.c:1754: error: for each function it appears in.) client/clitar.c:1754: error: parse error before ')' token client/clitar.c:1760: error: `errcode' undeclared (first use in this function) client/clitar.c:1760: error: `REG_EXTENDED' undeclared (first use in this function) client/clitar.c: At top level: client/clitar.c:1775: error: parse error before "if" client/clitar.c:1797: error: redefinition of `dry_run' client/clitar.c:94: error: `dry_run' previously defined here client/clitar.c:1797: warning: data...
2015 Dec 17
3
Assistance much appreciated
On 2015-12-17 19:30, peter dalgaard wrote: > Presumably the file in question is one of > > Peter-Dalgaards-MacBook-Air:BUILD pd$ grep -r "^Package: tools" * > library/tools/DESCRIPTION:Package: tools > src/library/tools/DESCRIPTION:Package: tools > > so the first thing I'd do is to have a good look at those files and see if they got somehow corrupted. > >
2010 Apr 27
1
include insmod patch
Am I wrong saying that actually anyone that use klibc has to use insmod patch or build a monolithic kernel? Could not the insmod patch be include? That will make everyone life easier on klibc upgrade. Gilles
2011 Nov 22
2
sip show peers
Is there a way with the command (1.4.42) for sip show peers to see the FULL "Name/Username" field??? I have long names and mine are being truncated. Thanks Jerry
2005 Feb 09
1
Samba 3.0.11 won't compile on Solaris 8
...rror: (Each undeclared identifier is reported only once client/clitar.c:1754: error: for each function it appears in.) client/clitar.c:1754: error: parse error before ')' token client/clitar.c:1760: error: `errcode' undeclared (first use in this function) client/clitar.c:1760: error: `REG_EXTENDED' undeclared (first use in this function) client/clitar.c: At top level: client/clitar.c:1775: error: parse error before "if" client/clitar.c:1797: error: redefinition of 'dry_run' client/clitar.c:94: error: previous definition of 'dry_run' was here client/clitar.c:179...
2015 Dec 17
0
Assistance much appreciated
...you're dying in an else clause, a previous if () must contain the clue. Unfortunately not necessarily the matching one. My guess is that your TRE library is broken. The line should have matched the RE "regline" defined as tre_regcomp(&regline, "^[^:]+:[[:blank:]]*", REG_EXTENDED); ...and used here: if(tre_regexecb(&regline, line, 1, regmatch, 0) == 0) { but apparently does not. > Thanks for the assistance! > > Michael -- Peter Dalgaard, Professor, Center for Statistics, Copenhagen Business School Solbjerg Plads 3, 2000 Frederiksberg, De...
2015 Nov 28
0
[patch] Use JIT for PCRE pattern matching
...study error\n\t'%s'\n"), errorptr); - } } + if (n > 10) { + re_pe = pcre_study(re_pcre, PCRE_STUDY_JIT_COMPILE, &errorptr); + if (errorptr) + warning(_("PCRE pattern study error\n\t'%s'\n"), errorptr); + } } else { int cflags = REG_NOSUB | REG_EXTENDED; if (igcase_opt) cflags |= REG_ICASE; @@ -929,7 +937,11 @@ if (fixed_opt); else if (perl_opt) { +#ifdef PCRE_CONFIG_JIT + if (re_pe) pcre_free_study(re_pe); +#else if (re_pe) pcre_free(re_pe); +#endif pcre_free(re_pcre); pcre_free((void *)tables); } else @@ -1623,7 +1635,7...
2015 Dec 18
1
Assistance much appreciated
...an else clause, a previous if () must contain the clue. Unfortunately not necessarily the matching one. > > My guess is that your TRE library is broken. The line should have matched the RE "regline" defined as > > tre_regcomp(&regline, "^[^:]+:[[:blank:]]*", REG_EXTENDED); > ...and used here: > if(tre_regexecb(&regline, line, 1, regmatch, 0) == 0) { > > but apparently does not. > > > >> Thanks for the assistance! >> >> Michael > > -- > Peter Dalgaard, Professor, > Center for Statistics, C...
2002 Nov 11
0
Regular Expression support
...if(!modifiedPattern) out_of_memory("check_one_exclude"); + if((optionsString=strrchr(modifiedPattern, '/'))){ + optionsString[0]='\0'; + optionsString++; + if(strchr(optionsString,'e')) options += REG_EXTENDED; + if(strchr(optionsString,'i')) options += REG_ICASE; + if(strchr(optionsString,'m')) options += REG_NEWLINE; // This option is not usefull when matching strings without any newlines + if(strchr(optionsString,'s')) options += R...
2015 Dec 18
1
Assistance much appreciated
...an else clause, a previous if () must contain the clue. Unfortunately not necessarily the matching one. > > My guess is that your TRE library is broken. The line should have matched the RE "regline" defined as > > tre_regcomp(&regline, "^[^:]+:[[:blank:]]*", REG_EXTENDED); > ...and used here: > if(tre_regexecb(&regline, line, 1, regmatch, 0) == 0) { > > but apparently does not. int tre_regcomp(regex_t *preg, const char *regex, int cflags) { return tre_regncomp(preg, regex, regex ? strlen(regex) : 0, cflags); } The code is a bit...
2005 Feb 09
1
build error on samba 3.0.11 to be domain member w/ W2k ADS
...error: (Each undeclared identifier is reported only once client/clitar.c:1754: error: for each function it appears in.) client/clitar.c:1754: error: parse error before ')' token client/clitar.c:1760: error: `errcode' undeclared (first use in this function) client/clitar.c:1760: error: `REG_EXTENDED' undeclared (first use in this function) client/clitar.c: At top level: client/clitar.c:1775: error: parse error before "if" client/clitar.c:1775: error: parse error before '[' token client/clitar.c:1775: error: `argv' undeclared here (not in a function) client/clitar.c:17...
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with updates coming from blktap2.5. Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>