From 39cbef607ca66475fc2ec6a2355505f012be9988 Mon Sep 17 00:00:00 2001 From: short <> Date: Sun, 26 Jun 2005 06:17:36 +0000 Subject: [PATCH 1/1] bundle_util_file_write() has now 'flags' parameter. --- src/startup-chkconfig.c | 2 +- src/startup-debian.c | 2 +- src/startup-lsb.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/startup-chkconfig.c b/src/startup-chkconfig.c index c26bbbc..b9891e5 100644 --- a/src/startup-chkconfig.c +++ b/src/startup-chkconfig.c @@ -96,7 +96,7 @@ int status; INIT_D_PATHNAME, /* pathname */ PACKAGE ".init", /* basename */ 0755, /* pathname_mode */ - TRUE)) /* pathname_backup */ + BUNDLE_UTIL_BACKUP_MASK)) /* flags */ return FALSE; #endif /* ENABLE_BUNDLE */ diff --git a/src/startup-debian.c b/src/startup-debian.c index cf28648..4bc98a8 100644 --- a/src/startup-debian.c +++ b/src/startup-debian.c @@ -153,7 +153,7 @@ int status; INIT_D_PATHNAME, /* pathname */ PACKAGE ".init", /* basename */ 0755, /* pathname_mode */ - TRUE)) /* pathname_backup */ + BUNDLE_UTIL_BACKUP_MASK)) /* flags */ return FALSE; #endif /* ENABLE_BUNDLE */ diff --git a/src/startup-lsb.c b/src/startup-lsb.c index 00d8839..b39b338 100644 --- a/src/startup-lsb.c +++ b/src/startup-lsb.c @@ -97,7 +97,7 @@ int status; INIT_D_PATHNAME, /* pathname */ PACKAGE ".init", /* basename */ 0755, /* pathname_mode */ - TRUE)) /* pathname_backup */ + BUNDLE_UTIL_BACKUP_MASK)) /* flags */ return FALSE; #endif /* ENABLE_BUNDLE */ -- 1.8.3.1