aboutsummaryrefslogtreecommitdiff
path: root/src/include/sockio.h
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2012-08-19 01:25:10 +0000
committerdos-reis <gdr@axiomatics.org>2012-08-19 01:25:10 +0000
commite125fb2cf60581e98bc6e7a65a818533fe1917c4 (patch)
treeea54085ce2144de3ef371b1e62de36c85c74b095 /src/include/sockio.h
parent308f70df7e403e68e0ae936ad00500ad46a914b9 (diff)
downloadopen-axiom-e125fb2cf60581e98bc6e7a65a818533fe1917c4.tar.gz
* include/sockio.h (connect_to_local_server): First parameter now
const char*. * include/pixmap.h (zzopen): Second parameter now const char*. * lib/pixmap.c: Propagate change. * lib/sockio-c.c: Likewise. * hyper/parse-types.c (parse_verbatim): Tidy. * hyper/spadint.c (print_source_to_string1): Likewise. * hyper/initx.h (init_top_window): Change parameter type to const char*. * hyper/initx.c: Propagate change. * hyper/titlebar.c: Tidy. (set_name_and_icon): icon_name is now of type const char*. (get_border_properties): bwidth is not of type const char*. (mergeDatabases): classname is now of type const char*. (is_it_850): probtbl.name is now of type const char*.
Diffstat (limited to 'src/include/sockio.h')
-rw-r--r--src/include/sockio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/sockio.h b/src/include/sockio.h
index 031809f2..a62bda86 100644
--- a/src/include/sockio.h
+++ b/src/include/sockio.h
@@ -121,7 +121,7 @@ OPENAXIOM_C_EXPORT int wait_for_client_write(openaxiom_sio*,
OPENAXIOM_C_EXPORT int make_server_name(char*, const char*);
OPENAXIOM_C_EXPORT int make_server_number(void);
-OPENAXIOM_C_EXPORT openaxiom_sio* connect_to_local_server(char*, int, int);
+OPENAXIOM_C_EXPORT openaxiom_sio* connect_to_local_server(const char*, int, int);
OPENAXIOM_C_EXPORT int open_server(const char*);
OPENAXIOM_C_EXPORT int accept_connection(openaxiom_sio*);
OPENAXIOM_C_EXPORT int sselect(int, fd_set*, fd_set*, fd_set*, void*);