[Bug 257531] Incorrect efi_var_set fn definition in efirt(9) manpage

From: <bugzilla-noreply_at_freebsd.org>
Date: Sun, 01 Aug 2021 13:30:16 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=257531

            Bug ID: 257531
           Summary: Incorrect efi_var_set fn definition in efirt(9)
                    manpage
           Product: Documentation
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: Manual Pages
          Assignee: bugs@FreeBSD.org
          Reporter: lakshman.94@outlook.com
                CC: doc@FreeBSD.org

Created attachment 226842
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=226842&action=edit
fix efirt.9 manpage

I'm using freebsd 12. I found a manual bug in src/share/man/man9/efirt.9

The function description in efirt.9:
     int
     efi_var_set(uint16_t *name, struct uuid *vendor, uint32_t *attrib,
           size_t *datasize, void *data);

is different from function defined in sys/sys/efi.h

    int efi_var_set(uint16_t *name, struct uuid *vendor, uint32_t attrib,
        size_t datasize, void *data);

Attached patch to fix the efirt.9 manpage

-- 
You are receiving this mail because:
You are the assignee for the bug.