Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 183710 | Differences between
and this patch

Collapse All | Expand All

(-)flickrfs.py (+16 lines)
Lines 209-214 Link Here
209
    background(timerThread, self.sets_thread, 
209
    background(timerThread, self.sets_thread, 
210
               self.sync_sets_thread, sets_sync_int) #sync every 2 minutes
210
               self.sync_sets_thread, sets_sync_int) #sync every 2 minutes
211
211
212
  def getattr_compat_0_1(self, *a):
213
    log.info("In compat")
214
    s = os.stat_result(self.getattr(*a))
215
    stat = fuse.Stat()
216
    stat.st_mode = s.st_mode
217
    stat.st_ino = s.st_ino
218
    stat.st_dev = s.st_dev
219
    stat.st_nlink = s.st_nlink
220
    stat.st_uid = s.st_uid
221
    stat.st_gid = s.st_gid
222
    stat.st_size = s.st_size
223
    stat.st_atime = s.st_atime
224
    stat.st_mtime = s.st_mtime
225
    stat.st_ctime = s.st_ctime
226
227
    return stat
212
228
213
  def imageResize(self, bufData):
229
  def imageResize(self, bufData):
214
    # If no resizing information is present, then return the buffer directly.
230
    # If no resizing information is present, then return the buffer directly.

Return to bug 183710