summaryrefslogtreecommitdiff
path: root/scheduler/env.c
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-03-20 21:11:41 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-03-20 21:11:41 +0000
commite1d6a77454308ff30d6da778be9d7b570e4f00b0 (patch)
tree09f41cca65fb9a0a32c51bd261d2fcffc1c1a17b /scheduler/env.c
parent480ef0fe29ab803f49dd87a7a21a6c61648539b8 (diff)
downloadcups-e1d6a77454308ff30d6da778be9d7b570e4f00b0.tar.gz
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@92 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'scheduler/env.c')
-rw-r--r--scheduler/env.c39
1 files changed, 23 insertions, 16 deletions
diff --git a/scheduler/env.c b/scheduler/env.c
index f055b3a21..b9c49dc3f 100644
--- a/scheduler/env.c
+++ b/scheduler/env.c
@@ -1,5 +1,5 @@
/*
- * "$Id: env.c 5245 2006-03-08 13:09:49Z mike $"
+ * "$Id: env.c 5305 2006-03-18 03:05:12Z mike $"
*
* Environment management routines for the Common UNIX Printing System (CUPS).
*
@@ -23,12 +23,12 @@
*
* Contents:
*
- * cupsdClearEnv() - Clear common environment variables.
* cupsdInitEnv() - Initialize the current environment with standard
* variables.
* cupsdLoadEnv() - Copy common environment variables into an array.
* cupsdSetEnv() - Set a common environment variable.
* cupsdSetEnvf() - Set a formatted common environment variable.
+ * clear_env() - Clear common environment variables.
*/
/*
@@ -47,20 +47,10 @@ static char *common_env[MAX_ENV]; /* Common env vars */
/*
- * 'cupsdClearEnv()' - Clear common environment variables.
+ * Local functions...
*/
-void
-cupsdClearEnv(void)
-{
- int i; /* Looping var */
-
-
- for (i = 0; i < num_common_env; i ++)
- cupsdClearString(common_env + i);
-
- num_common_env = 0;
-}
+static void clear_env(void);
/*
@@ -74,7 +64,7 @@ cupsdInitEnv(void)
* Clear existing environment variables...
*/
- cupsdClearEnv();
+ clear_env();
#if defined(__APPLE__)
/*
@@ -239,5 +229,22 @@ cupsdSetEnvf(const char *name, /* I - Name of variable */
/*
- * End of "$Id: env.c 5245 2006-03-08 13:09:49Z mike $".
+ * 'clear_env()' - Clear common environment variables.
+ */
+
+static void
+clear_env(void)
+{
+ int i; /* Looping var */
+
+
+ for (i = 0; i < num_common_env; i ++)
+ cupsdClearString(common_env + i);
+
+ num_common_env = 0;
+}
+
+
+/*
+ * End of "$Id: env.c 5305 2006-03-18 03:05:12Z mike $".
*/