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

Removed obsolete FIXME comments.

parent ae0ee524
Branches
Tags
No related merge requests found
/* /*
* $Id: log.c,v 0.22 1999/07/11 09:27:10 ceder Exp $ * $Id: log.c,v 0.23 2001/11/03 17:55:14 ceder Exp $
* Copyright (C) 1991-1995, 1998-1999 Lysator Academic Computer Association. * Copyright (C) 1991-1995, 1998-1999 Lysator Academic Computer Association.
* *
* This file is part of the LysKOM server. * This file is part of the LysKOM server.
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
#endif #endif
static const char * static const char *
rcsid = "$Id: log.c,v 0.22 1999/07/11 09:27:10 ceder Exp $"; rcsid = "$Id: log.c,v 0.23 2001/11/03 17:55:14 ceder Exp $";
#include "rcs.h" #include "rcs.h"
USE(rcsid); USE(rcsid);
...@@ -124,7 +124,10 @@ restart_kom(format, ...@@ -124,7 +124,10 @@ restart_kom(format,
#if defined(HAVE_GETCWD) #if defined(HAVE_GETCWD)
char pathname[1026]; char pathname[1026];
#else /* !defined(HAVE_GETCWD) */ #else /* !defined(HAVE_GETCWD) */
char *getwd(char *); /* +++ should be in sys/param.h */ /* getwd should be in sys/param.h, but if we are on such an old
system that it doesn't have getcwd, we can probably not count
on that. */
char *getwd(char *);
# if defined(MAXPATHLEN) # if defined(MAXPATHLEN)
char pathname[MAXPATHLEN]; char pathname[MAXPATHLEN];
# else # else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment