summaryrefslogtreecommitdiffstats
path: root/bufaux.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2008-06-11 09:35:37 +1000
committerDarren Tucker <dtucker@zip.com.au>2008-06-11 09:35:37 +1000
commit2a8b138ed852625abeb56192f8439061761bdb93 (patch)
tree752678c379588b97dc7a3264831b1228723f728c /bufaux.c
parent896ad5a4e40c48fa9bea71624830cc9cc3ce4fe0 (diff)
- dtucker@cvs.openbsd.org 2008/06/10 23:21:34
[bufaux.c] Use '\0' for a nul byte rather than unadorned 0. ok djm@
Diffstat (limited to 'bufaux.c')
-rw-r--r--bufaux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bufaux.c b/bufaux.c
index f0336399..cd9a35de 100644
--- a/bufaux.c
+++ b/bufaux.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bufaux.c,v 1.45 2008/05/08 06:59:01 markus Exp $ */
+/* $OpenBSD: bufaux.c,v 1.46 2008/06/10 23:21:34 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -180,7 +180,7 @@ buffer_get_string_ret(Buffer *buffer, u_int *length_ptr)
return (NULL);
}
/* Append a null character to make processing easier. */
- value[len] = 0;
+ value[len] = '\0';
/* Optionally return the length of the string. */
if (length_ptr)
*length_ptr = len;