diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2006-03-13 23:35:29 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2006-03-13 23:35:29 +0000 |
commit | 20a0097f74bfdec16c17dd7d3eb5968f81ec90c1 (patch) | |
tree | 70fa2b57d137718f66229fa28ad12528991e3fb3 /fetchmail.h | |
parent | b7e145bdf22387e6cba4b54099407102ff310967 (diff) | |
download | fetchmail-20a0097f74bfdec16c17dd7d3eb5968f81ec90c1.tar.gz fetchmail-20a0097f74bfdec16c17dd7d3eb5968f81ec90c1.tar.bz2 fetchmail-20a0097f74bfdec16c17dd7d3eb5968f81ec90c1.zip |
Rename a methods and some variables to steer clear of C++ namespace.
svn path=/branches/BRANCH_6-3/; revision=4733
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 4066facd..d450afc1 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -218,7 +218,7 @@ struct method /* describe methods for protocol state machine */ /* fetch a given message */ int (*trail)(int, struct query *, int, const char *); /* eat trailer of a message */ - int (*delete)(int, struct query *, int); + int (*delete_msg)(int, struct query *, int); /* delete method */ int (*mark_seen)(int, struct query *, int); /* mark as seen method */ |