summaryrefslogtreecommitdiff
path: root/os/xdmcp.c
diff options
context:
space:
mode:
authorHarold L Hunt II <huntharo@msu.edu>2005-05-02 21:57:32 +0000
committerHarold L Hunt II <huntharo@msu.edu>2005-05-02 21:57:32 +0000
commite50ab8feade400efd8e88ee0b2deeb924f169034 (patch)
treeb3e0bdf70ba1de4b6a7dba8310beb1e524a6571d /os/xdmcp.c
parentbaa0cfc15442287557e44fa2614d89ab0b5c2539 (diff)
Fix message type (respose->response) and fix */*comment*/ blocks to work
with fussy compilers.
Diffstat (limited to 'os/xdmcp.c')
-rw-r--r--os/xdmcp.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/os/xdmcp.c b/os/xdmcp.c
index 23b25953f..f253c2495 100644
--- a/os/xdmcp.c
+++ b/os/xdmcp.c
@@ -155,7 +155,7 @@ static void get_xdmcp_sock(void);
static void send_query_msg(void);
static void recv_willing_msg(
- struct sockaddr */*from*/,
+ struct sockaddr * /*from*/,
int /*fromlen*/,
unsigned /*length*/);
@@ -176,27 +176,27 @@ static void send_keepalive_msg(void);
static void recv_alive_msg(unsigned /*length*/);
static void XdmcpFatal(
- char */*type*/,
+ char * /*type*/,
ARRAY8Ptr /*status*/);
-static void XdmcpWarning(char */*str*/);
+static void XdmcpWarning(char * /*str*/);
static void get_manager_by_name(
int /*argc*/,
- char **/*argv*/,
+ char ** /*argv*/,
int /*i*/);
-static void get_fromaddr_by_name(int /*argc*/, char **/*argv*/, int /*i*/);
+static void get_fromaddr_by_name(int /*argc*/, char ** /*argv*/, int /*i*/);
#if defined(IPv6) && defined(AF_INET6)
-static int get_mcast_options(int /*argc*/, char **/*argv*/, int /*i*/);
+static int get_mcast_options(int /*argc*/, char ** /*argv*/, int /*i*/);
#endif
static void receive_packet(int /*socketfd*/);
static void send_packet(void);
-extern void XdmcpDeadSession(char */*reason*/);
+extern void XdmcpDeadSession(char * /*reason*/);
static void timeout(void);
@@ -204,7 +204,7 @@ static void restart(void);
static void XdmcpBlockHandler(
pointer /*data*/,
- struct timeval **/*wt*/,
+ struct timeval ** /*wt*/,
pointer /*LastSelectMask*/);
static void XdmcpWakeupHandler(
@@ -1459,7 +1459,7 @@ recv_alive_msg (unsigned length)
}
else
{
- XdmcpDeadSession ("Alive respose indicates session dead");
+ XdmcpDeadSession ("Alive response indicates session dead");
}
}
}