* [PATCH] Add O_TRUNC when creating cryo file
@ 2008-06-24 22:49 sukadev-r/Jw6+rmf7HQT0dZR+AlfA
[not found] ` <20080624224957.GA22681-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 2+ messages in thread
From: sukadev-r/Jw6+rmf7HQT0dZR+AlfA @ 2008-06-24 22:49 UTC (permalink / raw)
To: serue-r/Jw6+rmf7HQT0dZR+AlfA; +Cc: Containers
From 9b4dff531586c8dd0b0c75b17ef9ea3e5efc4d0e Mon Sep 17 00:00:00 2001
From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
Date: Tue, 24 Jun 2008 15:42:55 -0700
Subject: [PATCH] Add O_TRUNC when creating cryo file
Signed-off-by: Sukadev Bhattiprolu <sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
---
cr.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/cr.c b/cr.c
index 96a2ea0..b688229 100644
--- a/cr.c
+++ b/cr.c
@@ -1966,7 +1966,7 @@ int main(int argc, char **argv)
case 'l': mode = ch; break;
case 's': cr_mode |= CR_STOP; break;
case 'm': cr_mode |= CR_MMAP; break;
- case 'p': mode = ch; fd = 1; perm = O_WRONLY|O_CREAT; pid = (pid_t)atoi(optarg); break;
+ case 'p': mode = ch; fd = 1; perm = O_WRONLY|O_CREAT|O_TRUNC; pid = (pid_t)atoi(optarg); break;
case 'r': mode = ch; break;
case 'f': strncpy(filename, optarg, sizeof(filename)); break;
default: usage(); exit(1);
--
1.5.2.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] Add O_TRUNC when creating cryo file
[not found] ` <20080624224957.GA22681-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
@ 2008-06-24 23:03 ` Serge E. Hallyn
0 siblings, 0 replies; 2+ messages in thread
From: Serge E. Hallyn @ 2008-06-24 23:03 UTC (permalink / raw)
To: sukadev-r/Jw6+rmf7HQT0dZR+AlfA; +Cc: Containers
Quoting sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org (sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org):
> >From 9b4dff531586c8dd0b0c75b17ef9ea3e5efc4d0e Mon Sep 17 00:00:00 2001
> From: Sukadev Bhattiprolu <sukadev-23VcF4HTsmIX0ybBhKVfKdBPR1lH4CV8@public.gmane.org>
> Date: Tue, 24 Jun 2008 15:42:55 -0700
> Subject: [PATCH] Add O_TRUNC when creating cryo file
>
> Signed-off-by: Sukadev Bhattiprolu <sukadev-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
Thanks, applied.
-serge
> ---
> cr.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/cr.c b/cr.c
> index 96a2ea0..b688229 100644
> --- a/cr.c
> +++ b/cr.c
> @@ -1966,7 +1966,7 @@ int main(int argc, char **argv)
> case 'l': mode = ch; break;
> case 's': cr_mode |= CR_STOP; break;
> case 'm': cr_mode |= CR_MMAP; break;
> - case 'p': mode = ch; fd = 1; perm = O_WRONLY|O_CREAT; pid = (pid_t)atoi(optarg); break;
> + case 'p': mode = ch; fd = 1; perm = O_WRONLY|O_CREAT|O_TRUNC; pid = (pid_t)atoi(optarg); break;
> case 'r': mode = ch; break;
> case 'f': strncpy(filename, optarg, sizeof(filename)); break;
> default: usage(); exit(1);
> --
> 1.5.2.5
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-06-24 23:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-24 22:49 [PATCH] Add O_TRUNC when creating cryo file sukadev-r/Jw6+rmf7HQT0dZR+AlfA
[not found] ` <20080624224957.GA22681-r/Jw6+rmf7HQT0dZR+AlfA@public.gmane.org>
2008-06-24 23:03 ` Serge E. Hallyn
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.