diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-10-22 03:37:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-10-22 03:37:14 +0000 |
commit | 50e55e61b8a49e08c3614f012afe2abea87555ea (patch) | |
tree | b8e8eb534d53ca2ff65f8d6366d62f6a8a22d1e6 | |
parent | 2ed16f452c8cb9e9d8ec1b1fafb0009e26113815 (diff) |
string terminators are called NUL, not NULL
-rw-r--r-- | usr.sbin/ypldap/aldap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ypldap/aldap.c b/usr.sbin/ypldap/aldap.c index a1d74839b6c..6f867612baa 100644 --- a/usr.sbin/ypldap/aldap.c +++ b/usr.sbin/ypldap/aldap.c @@ -1,5 +1,5 @@ -/* $Id: aldap.c,v 1.33 2016/10/22 03:34:32 guenther Exp $ */ -/* $OpenBSD: aldap.c,v 1.33 2016/10/22 03:34:32 guenther Exp $ */ +/* $Id: aldap.c,v 1.34 2016/10/22 03:37:13 deraadt Exp $ */ +/* $OpenBSD: aldap.c,v 1.34 2016/10/22 03:37:13 deraadt Exp $ */ /* * Copyright (c) 2008 Alexander Schrijver <aschrijver@openbsd.org> @@ -1198,7 +1198,7 @@ isu8cont(unsigned char c) /* * Parse a LDAP value * notes: - * the argument p should be a NULL terminated sequence of ASCII bytes + * the argument p should be a NUL-terminated sequence of ASCII bytes */ char * parseval(char *p, size_t len) |