diff options
author | Peter Williams <peterw@src.gnome.org> | 2000-08-26 05:09:53 +0800 |
---|---|---|
committer | Peter Williams <peterw@src.gnome.org> | 2000-08-26 05:09:53 +0800 |
commit | dbce630738f44e6687db9b2ca8dc4b5aae37be3c (patch) | |
tree | 0e2df615971887f57b5f7452d6b3e5c222c476d9 /camel/camel.c | |
parent | 10e6501b5dca0bd5375d5d4f4ece5cdb1bbee9d4 (diff) | |
download | gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.gz gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.tar.zst gsoc2013-evolution-dbce630738f44e6687db9b2ca8dc4b5aae37be3c.zip |
Add support for specifying on which port to connect to a server; fix a potential infinite loop in unicode.
svn path=/trunk/; revision=5041
Diffstat (limited to 'camel/camel.c')
-rw-r--r-- | camel/camel.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/camel.c b/camel/camel.c index 0121c1082f..dd46295e63 100644 --- a/camel/camel.c +++ b/camel/camel.c @@ -40,7 +40,8 @@ camel_init(void) #endif /* G_THREADS_ENABLED */ #endif /* ENABLE_THREADS */ - unicode_init (); + /* Taken care of by e-util/e-unicode.c */ + /*unicode_init ();*/ return 0; } |