Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
488b0ec9
...
488b0ec9190531f6af0bf1701a1deec5fe17789f
authored
2002-12-14 23:44:11 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Changed type of `number' to size_t.
1 parent
b41cd99f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
include/mailutils/libsieve.h
libsieve/sieve.y
include/mailutils/libsieve.h
View file @
488b0ec
...
...
@@ -66,7 +66,7 @@ typedef struct {
sieve_data_type
type
;
union
{
char
*
string
;
long
number
;
size_t
number
;
list_t
list
;
sieve_runtime_tag_t
*
tag
;
void
*
ptr
;
...
...
libsieve/sieve.y
View file @
488b0ec
...
...
@@ -33,7 +33,7 @@ static void branch_fixup __P((size_t start, size_t end));
%union {
char *string;
long
number;
size_t
number;
sieve_instr_t instr;
sieve_value_t *value;
list_t list;
...
...
Please
register
or
sign in
to post a comment