| Summary: | [PATCH] fix 2x same lines in strcpy(3) and strncpy(3) | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Documentation | Reporter: | Aldis Berjoza <aldis> | ||||
| Component: | Books & Articles | Assignee: | freebsd-doc (Nobody) <doc> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
Uuups, my bad.... just noticed... how big mistake I made.... Sorry... I can't believe I missed it (I triple checked) close pr, since man is OK, I somehow show stp as str :D I'm very, very sorry -- Aldis Berjoza State Changed From-To: open->closed Closed at sumbitters request (don't be sorry, to err is human). :) |
============ char * stpcpy(char * restrict dst, const char * restrict src); char * stpncpy(char * restrict dst, const char * restrict src, size_t len); char * strcpy(char * restrict dst, const char * restrict src); char * strncpy(char * restrict dst, const char * restrict src, size_t len); ============ should be ============ char * stpcpy(char * restrict dst, const char * restrict src); char * stpncpy(char * restrict dst, const char * restrict src, size_t len); ============ Fix: Patch attached with submission follows: