Browse Source

Fix typo in source code (#666)

pull/671/head
Boyuan Yang 9 years ago
committed by Max Lv
parent
commit
2bf2d0787d
5 changed files with 25 additions and 25 deletions
  1. 42
      src/Makefile.am
  2. 2
      src/cache.h
  3. 2
      src/jconf.h
  4. 2
      src/local.h
  5. 2
      src/win32.h

42
src/Makefile.am

@ -28,31 +28,31 @@ endif
ss_local_SOURCES = utils.c \ ss_local_SOURCES = utils.c \
jconf.c \ jconf.c \
json.c \ json.c \
encrypt.c \ encrypt.c \
udprelay.c \ udprelay.c \
cache.c \ cache.c \
acl.c \ acl.c \
netutils.c \ netutils.c \
local.c local.c
ss_tunnel_SOURCES = utils.c \ ss_tunnel_SOURCES = utils.c \
jconf.c \ jconf.c \
json.c \ json.c \
encrypt.c \ encrypt.c \
udprelay.c \ udprelay.c \
cache.c \ cache.c \
netutils.c \ netutils.c \
tunnel.c tunnel.c
ss_server_SOURCES = utils.c \ ss_server_SOURCES = utils.c \
netutils.c \ netutils.c \
jconf.c \ jconf.c \
json.c \ json.c \
encrypt.c \ encrypt.c \
udprelay.c \ udprelay.c \
cache.c \ cache.c \
acl.c \ acl.c \
resolv.c \ resolv.c \
server.c server.c
ss_manager_SOURCES = utils.c \ ss_manager_SOURCES = utils.c \
@ -91,9 +91,9 @@ ss_redir_SOURCES = utils.c \
jconf.c \ jconf.c \
json.c \ json.c \
encrypt.c \ encrypt.c \
netutils.c \ netutils.c \
cache.c \ cache.c \
udprelay.c \ udprelay.c \
redir.c redir.c
ss_redir_CFLAGS = $(AM_CFLAGS) -DMODULE_REDIR ss_redir_CFLAGS = $(AM_CFLAGS) -DMODULE_REDIR
ss_redir_LDADD = $(SS_COMMON_LIBS) ss_redir_LDADD = $(SS_COMMON_LIBS)

2
src/cache.h

@ -1,5 +1,5 @@
/* /*
* cache.c - Define the cache manager interface * cache.h - Define the cache manager interface
* *
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com> * Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *

2
src/jconf.h

@ -1,5 +1,5 @@
/* /*
* server.c - Define the config data structure * jconf.h - Define the config data structure
* *
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com> * Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *

2
src/local.h

@ -1,5 +1,5 @@
/* /*
* local.h - Define the clinet's buffers and callbacks * local.h - Define the client's buffers and callbacks
* *
* Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com> * Copyright (C) 2013 - 2016, Max Lv <max.c.lv@gmail.com>
* *

2
src/win32.h

@ -1,5 +1,5 @@
/* /*
* win32.c - Win32 port helpers * win32.h - Win32 port helpers
* *
* Copyright (C) 2014, Linus Yang <linusyang@gmail.com> * Copyright (C) 2014, Linus Yang <linusyang@gmail.com>
* *

|||||||
100:0
Loading…
Cancel
Save