Changeset 20

Show
Ignore:
Timestamp:
07/04/06 02:00:00 (2 years ago)
Author:
zany
Message:

Release 0.10

Location:
trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r18 r20  
     12006-07-03  Christian W. Zuckschwerdt  <zany@triq.net> 
     2 
     3        * Removed statfs (caused problems on all but Siemens) 
     4 
    152006-06-12  Christian W. Zuckschwerdt  <zany@triq.net> 
    26 
  • trunk/configure.in

    r18 r20  
    1 AC_INIT(ObexFS, 0.9, zany@triq.net) 
     1AC_INIT(ObexFS, 0.10, zany@triq.net) 
    22#AC_CONFIG_SRCDIR(src/foo.c) 
    33AM_INIT_AUTOMAKE 
  • trunk/fuse/obexautofs.c

    r18 r20  
    11/* 
    22 *  obexautofs.c: FUSE Filesystem to access OBEX with automount 
     3 *  This is just a wrapper. ObexFTP API does the real work. 
    34 * 
    4  *  Copyright (c) 2005 Christian W. Zuckschwerdt <zany@triq.net> 
     5 *  Copyright (c) 2003-2006 Christian W. Zuckschwerdt <zany@triq.net> 
    56 * 
    67 *  This program is free software; you can redistribute it and/or modify it 
     
    1819 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
    1920 *      
    20  */ 
    21 /* 
    22  * Created at:    2005-09-22 
    23  * This is just a wrapper. ObexFTP API does the real work. 
    2421 */ 
    2522 
     
    617614        if (actual > size) 
    618615                actual = size; 
    619         DEBUG("reading %s at %" PRId64 " for %d (peek: %02x\n", path, offset, actual, wb->data[offset]); 
     616        DEBUG("reading %s at %" PRId64 " for %zu (peek: %02x\n", path, offset, actual, wb->data[offset]); 
    620617        memcpy(buf, wb->data + offset, actual); 
    621618 
     
    627624        data_buffer_t *wb; 
    628625        size_t newsize; 
    629         DEBUG("Writing %s at %" PRId64 " for %d\n", path, offset, size); 
     626        DEBUG("Writing %s at %" PRId64 " for %zu\n", path, offset, size); 
    630627        wb = (data_buffer_t *)fi->fh; 
    631628 
     
    685682} 
    686683 
     684#ifdef SIEMENS 
    687685/* just sum all clients */ 
    688686static int ofs_statfs(const char *UNUSED(label), struct statfs *st) 
     
    724722        return 0; 
    725723} 
     724#endif 
    726725 
    727726static void *ofs_init(void) { 
     
    775774        read:           ofs_read, 
    776775        write:          ofs_write, 
     776#ifdef SIEMENS 
    777777        statfs:         ofs_statfs, 
     778#endif 
    778779        release:        ofs_release, 
    779780        flush:          NULL, 
  • trunk/fuse/obexfs.c

    r18 r20  
    11/* 
    22 *  obexfs.c: FUSE Filesystem to access OBEX 
     3 *  This is just a wrapper. ObexFTP API does the real work. 
    34 * 
    4  *  Copyright (c) 2003-2005 Christian W. Zuckschwerdt <zany@triq.net> 
     5 *  Copyright (c) 2003-2006 Christian W. Zuckschwerdt <zany@triq.net> 
    56 * 
    67 *  This program is free software; you can redistribute it and/or modify it 
     
    1819 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
    1920 *      
    20  */ 
    21 /* 
    22  * Created at:    2003-01-05 
    23  * This is just a wrapper. ObexFTP API does the real work. 
    2421 */ 
    2522 
     
    351348        if (actual > size) 
    352349                actual = size; 
    353         DEBUG("reading %s at %" PRId64 " for %d (peek: %02x\n", path, offset, actual, wb->data[offset]); 
     350        DEBUG("reading %s at %" PRId64 " for %zu (peek: %02x\n", path, offset, actual, wb->data[offset]); 
    354351        memcpy(buf, wb->data + offset, actual); 
    355352 
     
    361358        data_buffer_t *wb; 
    362359        size_t newsize; 
    363         DEBUG("Writing %s at %" PRId64 " for %d\n", path, offset, size); 
     360        DEBUG("Writing %s at %" PRId64 " for %zu\n", path, offset, size); 
    364361        wb = (data_buffer_t *)fi->fh; 
    365362 
     
    413410} 
    414411 
     412#ifdef SIEMENS 
    415413static int ofs_statfs(const char *UNUSED(label), struct statfs *st) 
    416414{ 
     
    452450        return 0; 
    453451} 
     452#endif 
    454453 
    455454static void *ofs_init(void) { 
     
    485484        read:           ofs_read, 
    486485        write:          ofs_write, 
     486#ifdef SIEMENS 
    487487        statfs:         ofs_statfs, 
     488#endif 
    488489        release:        ofs_release, 
    489490        flush:          NULL,