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
ba75a740
Commit
ba75a740
authored
Jun 26, 1999
by
David Byers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed Bool bit fields to unsigned int in Membership_type.
parent
48b7fd4c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
9 deletions
+12
-9
ChangeLog
ChangeLog
+3
-0
src/include/kom-types.h
src/include/kom-types.h
+9
-9
No files found.
ChangeLog
View file @
ba75a740
...
...
@@ -11,6 +11,9 @@
1999-06-26 David Byers <davby@ida.liu.se>
* src/include/kom-types.h (Membership_type): Changed all fields
from Bool to unsigned int.
* src/server/aux-items.c: Removed support for precompiled aux
items. It was not currently used, and caused compilation errors
under HP/UX.
...
...
src/include/kom-types.h
View file @
ba75a740
/*
* $Id: kom-types.h,v 0.
39 1999/06/03 21:59:16 ceder
Exp $
* $Id: kom-types.h,v 0.
40 1999/06/26 20:01:19 byers
Exp $
* Copyright (C) 1990-1999 Lysator Academic Computer Association.
*
* This file is part of the LysKOM server.
...
...
@@ -251,14 +251,14 @@ typedef struct {
typedef
struct
{
Bool
invitation
:
1
;
Bool
passive
:
1
;
Bool
secret
:
1
;
Bool
reserved1
:
1
;
Bool
reserved2
:
1
;
Bool
reserved3
:
1
;
Bool
reserved4
:
1
;
Bool
reserved5
:
1
;
unsigned
int
invitation
:
1
;
unsigned
int
passive
:
1
;
unsigned
int
secret
:
1
;
unsigned
int
reserved1
:
1
;
unsigned
int
reserved2
:
1
;
unsigned
int
reserved3
:
1
;
unsigned
int
reserved4
:
1
;
unsigned
int
reserved5
:
1
;
}
Membership_type
;
...
...
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