From 8cf023fee38be2ddc12004f51659eac5890b7311 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 16 Jan 2000 11:22:39 +0000 Subject: a consequence of the access_table() fixes is that we can't treat DENY_DOS and DENY_FCB as the same thing anymore (the difference matters for *.exe files) (This used to be commit 8f3ff09283db87083a81a943909ae047cdd9e48b) --- source3/rpcclient/display.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source3/rpcclient/display.c b/source3/rpcclient/display.c index 3a029f16a5..e9875d0c88 100644 --- a/source3/rpcclient/display.c +++ b/source3/rpcclient/display.c @@ -37,6 +37,8 @@ char *get_file_mode_str(uint32 share_mode) case DENY_DOS : fstrcpy(mode, "DENY_DOS "); break; case DENY_READ : fstrcpy(mode, "DENY_READ "); break; case DENY_WRITE: fstrcpy(mode, "DENY_WRITE "); break; + case DENY_FCB: + case 0xFF: fstrcpy(mode, "DENY_FCB "); break; default : fstrcpy(mode, "DENY_???? "); break; } -- cgit