Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9991 → Rev 9992

/programs/network/ircc/ircc.asm
13,7 → 13,7
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
version equ '0.36'
version equ '0.36b'
 
; connection status
STATUS_DISCONNECTED = 0
/programs/network/ircc/userparser.inc
223,11 → 223,8
call print_char
 
pop esi
push esi
call print_asciiz
pop esi
 
 
lea esi, [edi - packetbuf]
mcall send, [socketnum], packetbuf, , 0
 
530,7 → 527,7
mov al, 0x01
stosb
 
push edi esi
push esi
 
; copy the message itself
@@:
550,7 → 547,6
stosb
mov ax, 0x0a0d
stosw
mov byte[edi], 0
 
; now print to the window
if TIMESTAMP
560,7 → 556,7
mov esi, ctcp_header
call print_asciiz
 
mov esi, packetbuf+8
mov esi, user_command+6
mov bl, ' '
call print_string
 
572,13 → 568,13
 
pop esi
call print_asciiz
pop esi
 
mov al, 10
call print_char
 
; now send it away
lea esi, [edi - packetbuf] ; calculate length
mcall send, [socketnum], packetbuf, , 0 ; and finally send to server
 
.fail:
 
ret