Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
f56c3421
Commit
f56c3421
authored
Aug 24, 1991
by
Per Cederqvist
Browse files
Use FILENAME_MAX, not 1024.
parent
9475db02
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/server/simple-cache.c
View file @
f56c3421
...
...
@@ -59,9 +59,9 @@ static Cache_node_mcb * text_mcb;
static
int
next_text_num
=
1
;
/* Defined in ramkomd.c */
extern
char
datafilename
[
1024
];
extern
char
backupfilename
[
1024
];
extern
char
textfilename
[
1024
];
extern
char
datafilename
[
FILENAME_MAX
];
extern
char
backupfilename
[
FILENAME_MAX
];
extern
char
textfilename
[
FILENAME_MAX
];
/*
* The elements in the following lists with same index refers to the same
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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