diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2004-11-08 09:33:15 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2004-11-08 09:33:15 +0000 |
commit | 65e619311d048a57b9ecf8d1baf919da30f7ca2a (patch) | |
tree | 79842ad8d5106a79e3b416e369f82f3d48508758 /fetchmail.h | |
parent | 6d7bc49daac142b273223c72ca9249921fe568b8 (diff) | |
download | fetchmail-65e619311d048a57b9ecf8d1baf919da30f7ca2a.tar.gz fetchmail-65e619311d048a57b9ecf8d1baf919da30f7ca2a.tar.bz2 fetchmail-65e619311d048a57b9ecf8d1baf919da30f7ca2a.zip |
Make iana_charset variable a const char * (was char *).
svn path=/trunk/; revision=3986
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 8b14e918..afb976d2 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -420,7 +420,7 @@ extern char *sdps_envfrom; extern char *sdps_envto; #endif /* SDPS_ENABLE */ -extern char *iana_charset; /* IANA assigned charset name */ +extern const char *iana_charset; /* IANA assigned charset name */ /* from ucs/norm_charmap.c */ const char *norm_charmap(const char *name); |