Skip to content
Snippets Groups Projects
Commit dda7a011 authored by Per Cederqvist's avatar Per Cederqvist
Browse files

(login_request): Added a missing const to the realuser local variable.

(rcsid): Added a missing const.
parent ba8cbd83
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: connections.c,v 0.49 1997/09/13 15:32:00 byers Exp $ * $Id: connections.c,v 0.50 1998/07/08 16:18:51 ceder Exp $
* Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996 Lysator Academic Computer Association. * Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -30,7 +30,8 @@ ...@@ -30,7 +30,8 @@
* Created by Willf|r 31/3-90. Mostly written by ceder. * Created by Willf|r 31/3-90. Mostly written by ceder.
*/ */
static char *rcsid = "$Id: connections.c,v 0.49 1997/09/13 15:32:00 byers Exp $"; static const char *
rcsid = "$Id: connections.c,v 0.50 1998/07/08 16:18:51 ceder Exp $";
#include "rcs.h" #include "rcs.h"
USE(rcsid); USE(rcsid);
...@@ -740,7 +741,7 @@ static void ...@@ -740,7 +741,7 @@ static void
login_request(IscEvent *event) login_request(IscEvent *event)
{ {
Connection * cp; Connection * cp;
char *realuser; const char *realuser;
int localport; int localport;
IscAddress *isc_adr; IscAddress *isc_adr;
char *hostname = NULL; char *hostname = NULL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment