projects
/
xonotic
/
darkplaces.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f7e2db9
)
forgot to give strlcat a size
author
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 15 Oct 2004 23:22:38 +0000
(23:22 +0000)
committer
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 15 Oct 2004 23:22:38 +0000
(23:22 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4640
d7cf8633
-e32d-0410-b094-
e92efae38249
host_cmd.c
patch
|
blob
|
history
diff --git
a/host_cmd.c
b/host_cmd.c
index dab3c3c16ca31279992b76012bd95c99c7093648..3a2ee9192ee08721323beaad4fc9b4e61e21d365 100644
(file)
--- a/
host_cmd.c
+++ b/
host_cmd.c
@@
-833,7
+833,7
@@
void Host_Say(qboolean teamonly)
p2[-1] = 0;
p2--;
}
- strlcat(text, "\n");
+ strlcat(text, "\n"
, sizeof(text)
);
// note: save is not a valid edict if fromServer is true
save = host_client;