diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-04-30 12:34:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-04-30 12:34:26 +0000 |
commit | 23c0cb01ca5b8bafb3ed9f31c3aa672957c2af86 (patch) | |
tree | 5961c3f7790a4e46a05d33f75d377f0324edbfa3 /source3/include | |
parent | aa6040c7ce96ea974967b4e9ec7d13778d3a43a5 (diff) | |
download | samba-23c0cb01ca5b8bafb3ed9f31c3aa672957c2af86.tar.gz samba-23c0cb01ca5b8bafb3ed9f31c3aa672957c2af86.tar.bz2 samba-23c0cb01ca5b8bafb3ed9f31c3aa672957c2af86.zip |
added cli_list_old() to allow for old style directory listing from
masktest
(This used to be commit 8a5c8cfa0ede1d119bf9013e321a497beefd4dda)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 27d97ee4c7..6e22fd171f 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -87,10 +87,6 @@ char *dos_GetWd(char *path); void fault_setup(void (*fn)(void *)); -/*The following definitions come from lib/fnmatch.c */ - -int fnmatch (const char *pattern, const char *string, int flags); - /*The following definitions come from lib/fsusage.c */ int sys_fsusage(const char *path, SMB_BIG_UINT *dfree, SMB_BIG_UINT *dsize); @@ -636,6 +632,8 @@ BOOL cli_dskattr(struct cli_state *cli, int *bsize, int *total, int *avail); int cli_list(struct cli_state *cli,const char *Mask,uint16 attribute, void (*fn)(file_info *, const char *)); +int cli_list_old(struct cli_state *cli,const char *Mask,uint16 attribute, + void (*fn)(file_info *, const char *)); /*The following definitions come from libsmb/climessage.c */ |