mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Fix proxy.c so that the static variables become const.
[originally from svn r2144]
This commit is contained in:
4
proxy.h
4
proxy.h
@ -16,7 +16,7 @@
|
||||
typedef struct Socket_proxy_tag * Proxy_Socket;
|
||||
|
||||
struct Socket_proxy_tag {
|
||||
struct socket_function_table *fn;
|
||||
const struct socket_function_table *fn;
|
||||
/* the above variable absolutely *must* be the first in this structure */
|
||||
|
||||
char * error;
|
||||
@ -84,7 +84,7 @@ struct Socket_proxy_tag {
|
||||
typedef struct Plug_proxy_tag * Proxy_Plug;
|
||||
|
||||
struct Plug_proxy_tag {
|
||||
struct plug_function_table *fn;
|
||||
const struct plug_function_table *fn;
|
||||
/* the above variable absolutely *must* be the first in this structure */
|
||||
|
||||
Proxy_Socket proxy_socket;
|
||||
|
Reference in New Issue
Block a user