Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 06 Mar 2016 15:25:59 UTC Commit: b883c82378d26433af923e3302d7e7b7ac49d435 https://github.com/geany/geany/commit/b883c82378d26433af923e3302d7e7b7ac49d4...
Log Message: ----------- Merge pull request #933 from techee/socket_info
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).