diff options
author | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-01-13 03:44:57 +0000 |
---|---|---|
committer | hiro <hiro@ee746299-78ed-0310-b773-934348b2243d> | 2010-01-13 03:44:57 +0000 |
commit | 9f827874227532e3cfa58c3f1b7e4822ac1add70 (patch) | |
tree | 700f63ab4bdf896a8d41b9c5ffac233b3fb0c56f /libsylph/utils.h | |
parent | fb375b0408b0b62b79ea6ebf659661253e54d8fd (diff) |
remove_numbered_files(): made filename to number conversion unsigned (fixes undeleted IMAP caches with UIDs larger than INT_MAX).
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@2422 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/utils.h')
-rw-r--r-- | libsylph/utils.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libsylph/utils.h b/libsylph/utils.h index 9e5efeb0..0b624b12 100644 --- a/libsylph/utils.h +++ b/libsylph/utils.h @@ -219,6 +219,7 @@ gboolean str_case_find_equal (const gchar *haystack, /* number-string conversion */ gint to_number (const gchar *nstr); +guint to_unumber (const gchar *nstr); gchar *itos_buf (gchar *nstr, gint n); gchar *itos (gint n); |