diff options
| author | Cy Schubert <cy@FreeBSD.org> | 2025-10-28 03:43:14 +0000 |
|---|---|---|
| committer | Cy Schubert <cy@FreeBSD.org> | 2025-10-28 03:43:14 +0000 |
| commit | 5ae7b106cfd4801ef5e0f69b02ad9b3ae3ccfbec (patch) | |
| tree | 26d4ecff60419d888812ee5a293d30729ccc1692 | |
| parent | 44cb1e857f048d2326bdc1a032ccd2c04d2bcdc9 (diff) | |
ipfs: Fix typo in error message
MFC after: 3 days
| -rw-r--r-- | sbin/ipf/ipfs/ipfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/ipf/ipfs/ipfs.c b/sbin/ipf/ipfs/ipfs.c index 6225c6e1154d..94c9f70410f2 100644 --- a/sbin/ipf/ipfs/ipfs.c +++ b/sbin/ipf/ipfs/ipfs.c @@ -576,7 +576,7 @@ int readnat(int fd, char *file) in = (nat_save_t *)malloc(ipn.ipn_dsize); if (in == NULL) { - fprintf(stderr, "nat:cannot malloc nat save atruct\n"); + fprintf(stderr, "nat:cannot malloc nat save struct\n"); goto freenathead; } |
