diff options
| author | Wayne Davison <wayned@samba.org> | 2006-02-05 04:52:11 +0000 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2006-02-05 04:52:11 +0000 |
| commit | 595251de24388fdfbac120daf9f3a748745ef7c5 (patch) | |
| tree | a969c5cb8172d1556375bc8454ac53275a932cfb /rsync.c | |
| parent | c85631421deb9eb49abff012f7bbd0dc96278b1b (diff) | |
| download | android_external_rsync-595251de24388fdfbac120daf9f3a748745ef7c5.tar.gz android_external_rsync-595251de24388fdfbac120daf9f3a748745ef7c5.tar.bz2 android_external_rsync-595251de24388fdfbac120daf9f3a748745ef7c5.zip | |
Make sure that we don't try to use iconv() without iconv.h.
Diffstat (limited to 'rsync.c')
| -rw-r--r-- | rsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ extern int keep_dirlinks; extern int make_backups; extern struct stats stats; -#ifdef HAVE_ICONV_OPEN +#if defined HAVE_ICONV_OPEN && defined HAVE_ICONV_H iconv_t ic_chck = (iconv_t)-1; static char *default_charset(void) |
