search for: is_ro

Displaying 3 results from an estimated 3 matches for "is_ro".

Did you mean: is_rx
2017 Nov 09
2
samba_kcc RODC failes with NT_STATUS_ACCESS_DENIED
Hello Rowland, of course it will be started by samba, I saw this output if I run "samba -i". But I can trigger this output also by starting samba_kcc manually. Andrej -----Ursprüngliche Nachricht----- Von: Rowland Penny [mailto:rpenny at samba.org] Gesendet: Donnerstag, 9. November 2017 14:04 An: samba at lists.samba.org Cc: Andrej Gessel <Andrej.Gessel at janztec.com>
2009 Mar 01
0
[PATCH 1/3] COMBOOT API: Improve readdir
...atattr_to_st_mode: Translate a FAT attribute to struct stat st_mode. +; +; DL FAT Attribute +; +; Returns st_mode +; DX st_mode +; + +fatattr_to_st_mode: + push eax + test dl,0xC8 ; 0x80 Unknown 0x40 Device(Internal) + ; 0x08 Label + jnz .zero + mov ax,0444o + test dl,1 ; 1 ReadOnly + jnz .is_ro + add ax,0222o +.is_ro: + test dl,0x10 ; 0x10 Directory + jz .not_dir + add ax,040111o ; Dir and Execute + jmp .done +.not_dir: + add ax,0100000o ; Regular file +.done: + mov dx,ax + jmp .end +.zero: ; Any condition that will result in an all zero return + mov dx,0 +.end: + pop eax + re...
2017 Nov 10
0
samba_kcc RODC failes with NT_STATUS_ACCESS_DENIED
...cn.options |= \ dsdb.NTDSCONN_OPT_DISABLE_INTERSITE_COMPRESSION cn.set_modified(True) # Display any modified connection - if self.readonly: + if self.readonly or ldsa.is_ro(): if cn.to_be_modified: logger.info("TO BE MODIFIED:\n%s" % cn) ldsa.commit_connections(self.samdb, ro=True) else: ldsa.commit_connections(self.samdb) @@ -1582,1...