Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: Jiří Techet techet@gmail.com Date: Sat, 05 Mar 2016 10:55:57 UTC Commit: 6ecfb8b5a6d688fea4d75d160535fddc658c6996 https://github.com/geany/geany/commit/6ecfb8b5a6d688fea4d75d160535fddc658c69...
Log Message: ----------- Rename socket_info_struct to SocketInfo
Modified Paths: -------------- src/socket.c src/socket.h
Modified: src/socket.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -103,7 +103,7 @@ #endif #define BUFFER_LENGTH 4096
-struct socket_info_struct socket_info; +struct SocketInfo socket_info;
#ifdef G_OS_WIN32
Modified: src/socket.h 4 lines changed, 2 insertions(+), 2 deletions(-) =================================================================== @@ -27,7 +27,7 @@
G_BEGIN_DECLS
-struct socket_info_struct +struct SocketInfo { gboolean ignore_socket; gchar *file_name; @@ -36,7 +36,7 @@ struct socket_info_struct guint lock_socket_tag; };
-extern struct socket_info_struct socket_info; +extern struct SocketInfo socket_info;
gint socket_init(gint argc, gchar **argv);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).