summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <alan@lxorguk.ukuu.org.uk>2003-03-23 02:06:20 -0800
committerLinus Torvalds <torvalds@home.transmeta.com>2003-03-23 02:06:20 -0800
commitb711909d8f0809dd63ccbe2218925cbae14283d4 (patch)
treec2f972c79cd51f93095b79e2cf94fe8cc5dd3d38
parent539452969a6553164607d70d84e72a8f7598c7be (diff)
[PATCH] remove NUL v NULL confusion
-rw-r--r--arch/i386/lib/usercopy.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/arch/i386/lib/usercopy.c b/arch/i386/lib/usercopy.c
index e3a66ce558a9..452e53c2c91d 100644
--- a/arch/i386/lib/usercopy.c
+++ b/arch/i386/lib/usercopy.c
@@ -51,18 +51,18 @@ do { \
} while (0)
/**
- * __strncpy_from_user: - Copy a NULL terminated string from userspace, with less checking.
+ * __strncpy_from_user: - Copy a NUL terminated string from userspace, with less checking.
* @dst: Destination address, in kernel space. This buffer must be at
* least @count bytes long.
* @src: Source address, in user space.
- * @count: Maximum number of bytes to copy, including the trailing NULL.
+ * @count: Maximum number of bytes to copy, including the trailing NUL.
*
- * Copies a NULL-terminated string from userspace to kernel space.
+ * Copies a NUL-terminated string from userspace to kernel space.
* Caller must check the specified block with access_ok() before calling
* this function.
*
* On success, returns the length of the string (not including the trailing
- * NULL).
+ * NUL).
*
* If access to userspace fails, returns -EFAULT (some data may have been
* copied).
@@ -79,16 +79,16 @@ __strncpy_from_user(char *dst, const char *src, long count)
}
/**
- * strncpy_from_user: - Copy a NULL terminated string from userspace.
+ * strncpy_from_user: - Copy a NUL terminated string from userspace.
* @dst: Destination address, in kernel space. This buffer must be at
* least @count bytes long.
* @src: Source address, in user space.
- * @count: Maximum number of bytes to copy, including the trailing NULL.
+ * @count: Maximum number of bytes to copy, including the trailing NUL.
*
- * Copies a NULL-terminated string from userspace to kernel space.
+ * Copies a NUL-terminated string from userspace to kernel space.
*
* On success, returns the length of the string (not including the trailing
- * NULL).
+ * NUL).
*
* If access to userspace fails, returns -EFAULT (some data may have been
* copied).
@@ -172,9 +172,9 @@ __clear_user(void *to, unsigned long n)
* @s: The string to measure.
* @n: The maximum valid length
*
- * Get the size of a NULL-terminated string in user space.
+ * Get the size of a NUL-terminated string in user space.
*
- * Returns the size of the string INCLUDING the terminating NULL.
+ * Returns the size of the string INCLUDING the terminating NUL.
* On exception, returns 0.
* If the string is too long, returns a value greater than @n.
*/