]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man2/bpf.2
Many pages: Use \[aq] instead of \(aq
[thirdparty/man-pages.git] / man2 / bpf.2
index 2923262bfa0aefe436274a1d04500771fc6af66a..989e972f3c5c3a6e5f7440230f7d3682e7e2480e 100644 (file)
@@ -190,11 +190,11 @@ union bpf_attr {
     struct {    /* Used by BPF_PROG_LOAD */
         __u32         prog_type;
         __u32         insn_cnt;
-        __aligned_u64 insns;      /* \(aqconst struct bpf_insn *\(aq */
-        __aligned_u64 license;    /* \(aqconst char *\(aq */
+        __aligned_u64 insns;      /* \[aq]const struct bpf_insn *\[aq] */
+        __aligned_u64 license;    /* \[aq]const char *\[aq] */
         __u32         log_level;  /* verbosity level of verifier */
         __u32         log_size;   /* size of user buffer */
-        __aligned_u64 log_buf;    /* user supplied \(aqchar *\(aq
+        __aligned_u64 log_buf;    /* user supplied \[aq]char *\[aq]
                                      buffer */
         __u32         kern_version;
                                   /* checked when prog_type=kprobe
@@ -1205,7 +1205,7 @@ main(int argc, char *argv[])
     map_fd = bpf_create_map(BPF_MAP_TYPE_ARRAY, sizeof(key),
                             sizeof(value), 256);
     if (map_fd < 0) {
-        printf("failed to create map \(aq%s\(aq\en", strerror(errno));
+        printf("failed to create map \[aq]%s\[aq]\en", strerror(errno));
         /* likely not run as root */
         return 1;
     }