Changeset 2611


Ignore:
Timestamp:
07/30/08 23:35:44 (5 years ago)
Author:
pterjan
Message:
  • Fix copy/paste errors
Location:
neercs/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • neercs/trunk/src/attach.c

    r2598 r2611  
    8888    strncpy(myaddr.sun_path, screen_list->s_socket_path, sizeof(myaddr.sun_path) - 1); 
    8989 
    90     unlink(screen_list->c_socket_path); 
     90    unlink(screen_list->s_socket_path); 
    9191 
    9292    if(bind(sock, (struct sockaddr *)&myaddr, sizeof(struct sockaddr_un)) < 0) 
     
    100100    fcntl(sock, F_SETFL, O_NONBLOCK); 
    101101 
    102     debug("Client listening on %s (%d)", screen_list->s_socket_path, sock); 
     102    debug("Server listening on %s (%d)", screen_list->s_socket_path, sock); 
    103103 
    104104    screen_list->s_socket = sock; 
  • neercs/trunk/src/mytrace.c

    r2580 r2611  
    2424#if defined USE_GRAB 
    2525#   include <sys/ioctl.h> 
    26 #   include <sys/ptrace.h> 
     26#   include <linux/ptrace.h> 
    2727#   include <sys/stat.h> 
    2828#   include <sys/syscall.h> 
Note: See TracChangeset for help on using the changeset viewer.