diff options
author | Sergiu Ivanov <unlimitedscolobb@gmail.com> | 2009-01-22 22:32:08 +0200 |
---|---|---|
committer | Sergiu Ivanov <unlimitedscolobb@gmail.com> | 2009-01-22 22:32:08 +0200 |
commit | 26fc5b0f9071e0b6266c01e3bc46ac102b27efa6 (patch) | |
tree | 32045ef3701aa140d3004f73416348de9c45df7b /magic.c | |
parent | 65360480a9540e3ed6cfdbc42a3a66c8b08b73dc (diff) |
netfs_S_dir_lookup can perform usual lookups
Due to the transition to a different way of building translator
stacks netfs_S_dir_lookup has been broken and nsmux could not
respond normally to any lookup requests. Now netfs_S_dir_lookup
is again capable of doing normal lookups. At the moment nsmux
is doing nothing but mirror the real filesystem.
Diffstat (limited to 'magic.c')
-rw-r--r-- | magic.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -32,8 +32,8 @@ /*---------------------------------------------------------------------------*/ /*---------Functions---------------------------------------------------------*/ -/*Locates the first unescaped magic separator in the supplied file - name. Returns NULL in case it finds nothing.*/ +/*Locates the first unescaped magic separator in the supplied + filename. Returns NULL in case it finds nothing.*/ char * magic_find_sep (const char * name) { /*The position of the separator */ @@ -53,7 +53,7 @@ char * magic_find_sep (const char * name) } /*magic_process_find_sep */ /*---------------------------------------------------------------------------*/ -/*Unescapes escaped separators in the substring of the file name +/*Unescapes escaped separators in the substring of the filename starting at `name` of length `sz`.*/ void magic_unescape (char * name, int sz) { |