diff options
| author | Martin Pool <mbp@samba.org> | 2002-02-18 22:49:00 +0000 |
|---|---|---|
| committer | Martin Pool <mbp@samba.org> | 2002-02-18 22:49:00 +0000 |
| commit | d0f821ad3d2627b842cf18770f91266a808b83b8 (patch) | |
| tree | 577ce52cc0a58fd43784a98308af93690783ba7f /tls.c | |
| parent | ded8347d6b8aca7fafaeb8fea40b789d6425addd (diff) | |
| download | android_external_rsync-d0f821ad3d2627b842cf18770f91266a808b83b8.tar.gz android_external_rsync-d0f821ad3d2627b842cf18770f91266a808b83b8.tar.bz2 android_external_rsync-d0f821ad3d2627b842cf18770f91266a808b83b8.zip | |
Must use STRUCT_STAT not "struct stat" to be compatible with other
rsync functions.
Diffstat (limited to 'tls.c')
| -rw-r--r-- | tls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ static void failed (char const *what, static void list_file (const char *fname) { - struct stat buf; + STRUCT_STAT buf; char permbuf[PERMSTRING_SIZE]; struct tm *mt; char datebuf[50]; |
