Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lyskom-server-ceder-1616-generations-topgit
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
f0509d0e
Commit
f0509d0e
authored
Oct 22, 1998
by
Per Cederqvist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(set_info): Allow motd_of_lyskom to be 0.
parent
49ca1410
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
src/server/admin.c
src/server/admin.c
+7
-3
No files found.
src/server/admin.c
View file @
f0509d0e
/*
* $Id: admin.c,v 0.2
7 1998/08/29 13:03:30
ceder Exp $
* $Id: admin.c,v 0.2
8 1998/10/22 22:10:15
ceder Exp $
* Copyright (C) 1991, 1993, 1994, 1995, 1996 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -29,7 +29,7 @@
*/
static
const
char
*
rcsid
=
"$Id: admin.c,v 0.2
7 1998/08/29 13:03:30
ceder Exp $"
;
rcsid
=
"$Id: admin.c,v 0.2
8 1998/10/22 22:10:15
ceder Exp $"
;
#include "rcs.h"
USE
(
rcsid
);
...
...
@@ -137,7 +137,11 @@ set_info(Info *info)
/* Check that everything mentioned exists */
GET_T_STAT
(
text
,
info
->
motd_of_lyskom
,
FAILURE
);
if
(
info
->
motd_of_lyskom
!=
0
)
{
GET_T_STAT
(
text
,
info
->
motd_of_lyskom
,
FAILURE
);
}
GET_C_STAT
(
conf
,
info
->
conf_pres_conf
,
FAILURE
);
GET_C_STAT
(
conf
,
info
->
pers_pres_conf
,
FAILURE
);
GET_C_STAT
(
conf
,
info
->
motd_conf
,
FAILURE
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment