]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cgi-bin/var.c
Load cups into easysw/current.
[thirdparty/cups.git] / cgi-bin / var.c
index 4a1a214a7fcf43eab45d7bc0cced76d0e70850c9..8d4dab9ea618c700ff886a39dcdd91b8a053d71e 100644 (file)
@@ -1,25 +1,16 @@
 /*
- * "$Id: var.c 4869 2005-12-06 02:43:40Z mike $"
+ * "$Id: var.c 6649 2007-07-11 21:46:42Z mike $"
  *
  *   CGI form variable and array functions.
  *
+ *   Copyright 2007 by Apple Inc.
  *   Copyright 1997-2005 by Easy Software Products.
  *
  *   These coded instructions, statements, and computer programs are the
- *   property of Easy Software Products and are protected by Federal
- *   copyright law.  Distribution and use rights are outlined in the file
- *   "LICENSE.txt" which should have been included with this file.  If this
- *   file is missing or damaged please contact Easy Software Products
- *   at:
- *
- *       Attn: CUPS Licensing Information
- *       Easy Software Products
- *       44141 Airport View Drive, Suite 204
- *       Hollywood, Maryland 20636 USA
- *
- *       Voice: (301) 373-9600
- *       EMail: cups-info@cups.org
- *         WWW: http://www.cups.org
+ *   property of Apple Inc. and are protected by Federal copyright
+ *   law.  Distribution and use rights are outlined in the file "LICENSE.txt"
+ *   which should have been included with this file.  If this file is
+ *   file is missing or damaged, see the license at "http://www.cups.org/".
  *
  * Contents:
  *
@@ -239,6 +230,12 @@ cgiInitialize(void)
 
   cupsSetPasswordCB(cgi_passwd);
 
+ /*
+  * Set the locale so that times, etc. are formatted properly...
+  */
+
+  setlocale(LC_ALL, "");
+
 #ifdef DEBUG
  /*
   * Disable output buffering to find bugs...
@@ -943,7 +940,8 @@ cgi_passwd(const char *prompt)              /* I - Prompt (not used) */
 {
   (void)prompt;
 
-  fprintf(stderr, "DEBUG: cgi_passwd(prompt=\"%s\") called!\n", prompt);
+  fprintf(stderr, "DEBUG: cgi_passwd(prompt=\"%s\") called!\n",
+          prompt ? prompt : "(null)");
 
  /*
   * Send a 401 (unauthorized) status to the server, so it can notify
@@ -1020,5 +1018,5 @@ cgi_unlink_file(void)
 
 
 /*
- * End of "$Id: var.c 4869 2005-12-06 02:43:40Z mike $".
+ * End of "$Id: var.c 6649 2007-07-11 21:46:42Z mike $".
  */