]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/add_key.2
execve.2, exec.3: Consistently use the term 'pathname' (not 'path')
[thirdparty/man-pages.git] / man2 / add_key.2
index 2e6736241434df387f90c8e94b1f6cb52704f3ad..c7520250d0463e4680774abf67961fe48e2978be 100644 (file)
@@ -9,7 +9,7 @@
 .\" 2 of the License, or (at your option) any later version.
 .\" %%%LICENSE_END
 .\"
-.TH ADD_KEY 2 2017-03-13 Linux "Linux Key Management Calls"
+.TH ADD_KEY 2 2019-03-06 Linux "Linux Key Management Calls"
 .SH NAME
 add_key \- add a key to the kernel's key management facility
 .SH SYNOPSIS
@@ -250,7 +250,7 @@ main(int argc, char *argv[])
     key_serial_t key;
 
     if (argc != 4) {
-        fprintf(stderr, "Usage: %s type description payload\\n",
+        fprintf(stderr, "Usage: %s type description payload\en",
                 argv[0]);
         exit(EXIT_FAILURE);
     }
@@ -262,7 +262,7 @@ main(int argc, char *argv[])
         exit(EXIT_FAILURE);
     }
 
-    printf("Key ID is %lx\\n", (long) key);
+    printf("Key ID is %lx\en", (long) key);
 
     exit(EXIT_SUCCESS);
 }
@@ -274,8 +274,8 @@ main(int argc, char *argv[])
 .BR keyctl (2),
 .BR request_key (2),
 .BR keyctl (3),
-.BR keyutils (7),
 .BR keyrings (7),
+.BR keyutils (7),
 .BR persistent\-keyring (7),
 .BR process\-keyring (7),
 .BR session\-keyring (7),
@@ -284,6 +284,12 @@ main(int argc, char *argv[])
 .BR user\-session\-keyring (7)
 .PP
 The kernel source files
+.IR Documentation/security/keys/core.rst
+and
+.IR Documentation/keys/request\-key.rst
+(or, before Linux 4.13, in the files
+.\" commit b68101a1e8f0263dbc7b8375d2a7c57c6216fb76
 .IR Documentation/security/keys.txt
 and
-.IR Documentation/security/keys\-request\-key.txt .
+.\" commit 3db38ed76890565772fcca3279cc8d454ea6176b
+.IR Documentation/security/keys\-request\-key.txt ).