Fix typos.
Showing
1 changed file
with
7 additions
and
7 deletions
... | @@ -3573,9 +3573,9 @@ invocation in @option{--attach-fd} options. | ... | @@ -3573,9 +3573,9 @@ invocation in @option{--attach-fd} options. |
3573 | 3573 | ||
3574 | The descriptors will be held in @samp{@@fds} array. This will prevent | 3574 | The descriptors will be held in @samp{@@fds} array. This will prevent |
3575 | them from being wiped out by the garbage collector. Furthermore, care | 3575 | them from being wiped out by the garbage collector. Furthermore, care |
3576 | should be taken to ensure that the @code{O_CLOECEC} flag be not set | 3576 | should be taken to ensure that the @code{O_CLOEXEC} flag be not set |
3577 | for these descriptors. This sample script takes a simplistic approach: | 3577 | for these descriptors. This sample script takes a simplistic approach: |
3578 | it instructs Perl to not close first 255 descriptors when executing | 3578 | it instructs Perl not to close first 255 descriptors when executing |
3579 | another programs: | 3579 | another programs: |
3580 | 3580 | ||
3581 | @example | 3581 | @example |
... | @@ -3608,12 +3608,12 @@ Now, the @command{mail} command is instructed to create next | ... | @@ -3608,12 +3608,12 @@ Now, the @command{mail} command is instructed to create next |
3608 | attachment from that file descriptor: | 3608 | attachment from that file descriptor: |
3609 | 3609 | ||
3610 | @example | 3610 | @example |
3611 | my $mpname = $+@{mpoint@}; | 3611 | my $mpname = $+@{mpoint@}; |
3612 | $mpname =~ tr@{/@}@{%@}; | 3612 | $mpname =~ tr@{/@}@{%@}; |
3613 | push @@cmd, | 3613 | push @@cmd, |
3614 | "--content-name=Set[ug]id files on $+@{mpoint@} (type $+@{fstype@})", | 3614 | "--content-name=Set[ug]id files on $+@{mpoint@} (type $+@{fstype@})", |
3615 | "--content-filename=$mpname.list", | 3615 | "--content-filename=$mpname.list", |
3616 | '--attach-fd=' . fileno($fd); | 3616 | '--attach-fd=' . fileno($fd); |
3617 | @} | 3617 | @} |
3618 | @} | 3618 | @} |
3619 | close $in; | 3619 | close $in; | ... | ... |
-
Please register or sign in to post a comment