Escape "\" as "\e" in the example.

Fix formatting problems reported by Stathis Kamperis on PR bin/39535.
This commit is contained in:
itohy 2008-09-14 12:51:39 +00:00
parent d5a365311b
commit d6e760bdd5
1 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: fileassoc.9,v 1.21 2008/05/28 00:31:10 snj Exp $
.\" $NetBSD: fileassoc.9,v 1.22 2008/09/14 12:51:39 itohy Exp $
.\"
.\" Copyright (c) 2006 Elad Efrat <elad@NetBSD.org>
.\" All rights reserved.
@ -236,7 +236,7 @@ void
myhook_cleanup(void *data)
{
printf("Myhook: Removing entry for file.\n");
printf("Myhook: Removing entry for file.\en");
...handle file entry removal...
free(data, M_TEMP);
}
@ -252,11 +252,11 @@ myhook_acl_add(struct vnode *vp, struct myhook_acl *acl)
error = fileassoc_add(vp, myhook_id, acl);
if (error) {
printf("Myhook: Could not add ACL.\n");
printf("Myhook: Could not add ACL.\en");
...handle error...
}
printf("Myhook: Added ACL.\n");
printf("Myhook: Added ACL.\en");
return (0);
}
@ -279,7 +279,7 @@ myhook_acl_access(struct vnode *vp, int access_flags)
error = myhook_acl_eval(acl, access_flags);
if (error) {
printf("Myhook: Denying access based on ACL decision.\n");
printf("Myhook: Denying access based on ACL decision.\en");
return (error);
}
@ -294,7 +294,7 @@ int error;
error = fileassoc_clear(vp, myhook_id);
if (error) {
printf("Myhook: Error occurred during fileassoc removal.\n");
printf("Myhook: Error occurred during fileassoc removal.\en");
...handle error...
}
.Ed