407 |
else if (strcmp(argv[op], "-i") == 0) showinfo = 1; |
else if (strcmp(argv[op], "-i") == 0) showinfo = 1; |
408 |
else if (strcmp(argv[op], "-d") == 0) showinfo = debug = 1; |
else if (strcmp(argv[op], "-d") == 0) showinfo = debug = 1; |
409 |
else if (strcmp(argv[op], "-o") == 0 && argc > 2 && |
else if (strcmp(argv[op], "-o") == 0 && argc > 2 && |
410 |
((size_offsets = get_value(argv[op+1], &endptr)), *endptr == 0)) |
((size_offsets = get_value((unsigned char *)argv[op+1], &endptr)), |
411 |
|
*endptr == 0)) |
412 |
{ |
{ |
413 |
op++; |
op++; |
414 |
argc--; |
argc--; |
1018 |
uschar *pp = name; |
uschar *pp = name; |
1019 |
while (isalnum(*p)) *pp++ = *p++; |
while (isalnum(*p)) *pp++ = *p++; |
1020 |
*pp = 0; |
*pp = 0; |
1021 |
n = pcre_get_stringnumber(re, name); |
n = pcre_get_stringnumber(re, (char *)name); |
1022 |
if (n < 0) |
if (n < 0) |
1023 |
fprintf(outfile, "no parentheses with name \"%s\"\n", name); |
fprintf(outfile, "no parentheses with name \"%s\"\n", name); |
1024 |
else copystrings |= 1 << n; |
else copystrings |= 1 << n; |
1071 |
uschar *pp = name; |
uschar *pp = name; |
1072 |
while (isalnum(*p)) *pp++ = *p++; |
while (isalnum(*p)) *pp++ = *p++; |
1073 |
*pp = 0; |
*pp = 0; |
1074 |
n = pcre_get_stringnumber(re, name); |
n = pcre_get_stringnumber(re, (char *)name); |
1075 |
if (n < 0) |
if (n < 0) |
1076 |
fprintf(outfile, "no parentheses with name \"%s\"\n", name); |
fprintf(outfile, "no parentheses with name \"%s\"\n", name); |
1077 |
else getstrings |= 1 << n; |
else getstrings |= 1 << n; |