Displaying 2 results from an estimated 2 matches for "notroot".
Did you mean:
nonroot
2012 Aug 03
1
Pigeonhole sieve include namespace regression
...: fileinto (id: 5)
* Included personal script 'svn' (block: 5):
[script code here]
* Main program (block: 2):
Address Line Code
00000000: DEBUG BLOCK: 3
00000001: EXTENSIONS [1]:
00000002: include
00000003: 2: INCLUDE:
00000005: script: `svn' from /home/notroot/sieve/svn.sieve [ID:
1, BLOCK: 5]
00000007: 3: INCLUDE:
00000009: script: `svn' from /home/notroot/sieve/svn.sieve [ID:
1, BLOCK: 5]
0000000b: 3: [End of code]
As can be seen the personal script is included twice. Obvious work
around is to rename the personal script. However it...
2009 Mar 21
0
[PATCH 1/1] SYSLINUX/COMBOOT: Abstract searchdir and fix the opendir call
...ZF clear
; SI = file pointer
; EAX = file length in bytes
+; DL = FAT attributes
; If unsuccessful
; ZF set
;
; Assumes CS == DS == ES, and trashes BX and CX.
;
-searchdir:
+searchdir4any:
mov eax,[CurrentDir]
+ mov dl,0
cmp byte [di],'/' ; Root directory?
jne .notroot
mov eax,[RootDir]
@@ -1332,7 +1336,7 @@ searchdir:
dec dx
cmp dx,si
jz .founddir
-
+.searchname:
mov [PrevDir],eax ; Remember last directory searched
push di
@@ -1344,7 +1348,58 @@ searchdir:
cmp byte [di-1],'/' ; Do we expect a directory
je .isdir
- ; Otherwise,...