Changeset 3026

Show
Ignore:
Timestamp:
11/28/07 19:28:47
Author:
pvanhoof
Message:

Variable name mixup

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • devel/pvanhoof/bs/libtinymail-camel/camel-lite/camel/providers/imap/camel-imap-folder.c

    r3025 r3026  
    44614461  CamelImapStore *store = NULL; 
    44624462  ssize_t nread = 0; 
    4463   FILE *f = NULL; 
     4463  FILE *fil = NULL; 
    44644464  gboolean ctchecker = FALSE; 
    44654465 
     
    45074507                        retry = FALSE; 
    45084508 
    4509                         f = fopen (path, "w"); 
    4510  
    4511                         if (!f || fd == -1) { 
     4509                        fil = fopen (path, "w"); 
     4510 
     4511                        if (!fil || fd == -1) { 
    45124512                                err = TRUE; 
    45134513                                ex_id = CAMEL_EXCEPTION_SERVICE_UNAVAILABLE; 
     
    45164516                        } 
    45174517 
    4518                         fd = fileno (f); 
     4518                        fd = fileno (fil); 
    45194519 
    45204520                        if (binary && *binary && store->capabilities & IMAP_CAPABILITY_BINARY) 
     
    45734573                                                store->capabilities &= ~IMAP_CAPABILITY_BINARY; 
    45744574                                                retry = TRUE; 
     4575                                                fclose (fil); 
     4576                                                fil = NULL; 
     4577                                                unlink (path); 
    45754578                                                g_free (path); 
    45764579                                                path = g_strdup_printf ("%s/%s_%s_ENCODED", imap_folder->cache->path, uid, spec); 
     
    48034806                } 
    48044807 
    4805                 if (f
    4806                         fclose (f); 
     4808                if (fil
     4809                        fclose (fil); 
    48074810                stop_gmsgstore (imap_folder, ctchecker, FALSE); 
    48084811        } 
     
    48154818 
    48164819 
    4817         if (f
    4818                 fclose (f); 
     4820        if (fil
     4821                fclose (fil); 
    48194822 
    48204823        if (!err_message)