Changeset 3298ddc in mainline for uspace/lib/libfs


Ignore:
Timestamp:
2008-03-06T22:33:27Z (17 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d5d9c53
Parents:
739d00a
Message:

Support for multiple TMPFS node names.

Location:
uspace/lib/libfs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libfs/libfs.c

    r739d00a r3298ddc  
    176176
    177177                /* match the component */
    178                 while (tmp && !ops->match(tmp, component))
     178                while (tmp && !ops->match(cur, tmp, component))
    179179                        tmp = ops->sibling_get(tmp);
    180180
  • uspace/lib/libfs/libfs.h

    r739d00a r3298ddc  
    4343
    4444typedef struct {
    45         bool (* match)(void *, const char *);
     45        bool (* match)(void *, void *, const char *);
    4646        void * (* create)(int);
    4747        void (* destroy)(void *);
Note: See TracChangeset for help on using the changeset viewer.