]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
add_key.2, keyctl.2, request_key.2: srcfix: remove strange .\"""...""" comments
authorMichael Kerrisk <mtk.manpages@gmail.com>
Sun, 27 Jun 2010 04:46:19 +0000 (06:46 +0200)
committerMichael Kerrisk <mtk.manpages@gmail.com>
Sun, 27 Jun 2010 04:47:23 +0000 (06:47 +0200)
Reported-by: Jianhua Li <jhlicc@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
man2/add_key.2
man2/keyctl.2
man2/request_key.2

index 4cd01ab1df4f155b7ddb446b75fc83b4969fd91e..028c9a1ca91ecebc8b16f3c1f31d1ac1c43db48e 100644 (file)
@@ -8,17 +8,14 @@
 .\" 2 of the License, or (at your option) any later version.
 .\"
 .TH ADD_KEY 2 2010-02-25 Linux "Linux Key Management Calls"
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH NAME
 add_key \- Add a key to the kernel's key management facility
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH SYNOPSIS
 .nf
 .B #include <keyutils.h>
 .sp
 .BI "key_serial_t add_key(const char *" type ", const char *" description ,
 .BI "const void *" payload ", size_t " plen ", key_serial_t " keyring ");"
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH DESCRIPTION
 .BR add_key ()
 asks the kernel to create or update a key of the given
@@ -63,7 +60,6 @@ This specifies the caller's UID-specific keyring.
 .TP
 .B KEY_SPEC_USER_SESSION_KEYRING
 This specifies the caller's UID-session keyring.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH KEY TYPES
 There are a number of key types available in the core key management code, and
 these can be specified to this function:
@@ -89,7 +85,6 @@ keys of any type.  If this interface is used to create a keyring, then a
 should be specified, and
 .I plen
 should be zero.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH RETURN VALUE
 On success
 .BR add_key ()
@@ -97,7 +92,6 @@ returns the serial number of the key it created or updated.
 On error, the value
 .B -1
 will be returned and errno will have been set to an appropriate error.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH ERRORS
 .TP
 .B ENOKEY
@@ -121,7 +115,6 @@ it to the keyring.
 .TP
 .B EACCES
 The keyring wasn't available for modification by the user.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH LINKING
 Although this is a Linux system call, it is not present in
 .I libc
@@ -130,7 +123,6 @@ but can be found rather in
 When linking,
 .B -lkeyutils
 should be specified to the linker.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH SEE ALSO
 .BR keyctl (1),
 .BR keyctl (2),
index bd22ba1a46bfdfdd2f96d75a973b29798971c000..74be89469df49922c19247aefbf07484a5911c80 100644 (file)
@@ -8,16 +8,13 @@
 .\" 2 of the License, or (at your option) any later version.
 .\"
 .TH KEYCTL 2 2010-02-25 Linux "Linux Key Management Calls"
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH NAME
 keyctl \- Manipulate the kernel's key management facility
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH SYNOPSIS
 .nf
 .B #include <keyutils.h>
 .sp
 .BI "long keyctl(int " cmd ", ...);"
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH DESCRIPTION
 .BR keyctl ()
 has a number of functions available:
@@ -79,7 +76,6 @@ into individual functions to permit compiler the compiler to check types.
 See the
 .B See Also
 section at the bottom.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH RETURN VALUE
 On success
 .BR keyctl ()
@@ -87,7 +83,6 @@ returns the serial number of the key it found.
 On error, the value
 .B -1
 will be returned and errno will have been set to an appropriate error.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH ERRORS
 .TP
 .B ENOKEY
@@ -108,7 +103,6 @@ linking it to the keyring.
 .TP
 .B EACCES
 A key operation wasn't permitted.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH LINKING
 Although this is a Linux system call, it is not present in
 .I libc
@@ -117,7 +111,6 @@ but can be found rather in
 When linking,
 .B -lkeyutils
 should be specified to the linker.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH SEE ALSO
 .BR keyctl (1),
 .br
index f053f2a232535260455a34a58d59fd39eb2b38d5..2d8c64bee213b5d86c026cc9bff10eaf35d52bfa 100644 (file)
@@ -8,17 +8,14 @@
 .\" 2 of the License, or (at your option) any later version.
 .\"
 .TH REQUEST_KEY 2 2010-02-25 Linux "Linux Key Management Calls"
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH NAME
 request_key \- Request a key from the kernel's key management facility
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH SYNOPSIS
 .nf
 .B #include <keyutils.h>
 .sp
 .BI "key_serial_t request_key(const char *" type ", const char *" description ,
 .BI "const char *" callout_info ", key_serial_t " keyring ");"
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH DESCRIPTION
 .BR request_key ()
 asks the kernel to find a key of the given
@@ -89,7 +86,6 @@ If a key is created, no matter whether it's a valid key or a negative key, it
 will displace any other key of the same type and description from the
 destination
 .IR keyring .
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH RETURN VALUE
 On success
 .BR request_key ()
@@ -97,7 +93,6 @@ returns the serial number of the key it found.
 On error, the value
 .B -1
 will be returned and errno will have been set to an appropriate error.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH ERRORS
 .TP
 .B ENOKEY
@@ -124,7 +119,6 @@ it to the keyring.
 .TP
 .B EACCES
 The keyring wasn't available for modification by the user.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH LINKING
 Although this is a Linux system call, it is not present in
 .I libc
@@ -133,7 +127,6 @@ but can be found rather in
 When linking,
 .B -lkeyutils
 should be specified to the linker.
-.\"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
 .SH SEE ALSO
 .BR keyctl (1),
 .BR add_key (2),