]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/banners.c
Fix source file header text duplication text duplication.
[thirdparty/cups.git] / scheduler / banners.c
index ef73d2e7cf5859b722544a28e9776df889ff06f3..171b015da492437ebe885a9e2906fb680aad1a11 100644 (file)
@@ -1,24 +1,14 @@
 /*
- * "$Id: banners.c 7221 2008-01-16 22:20:08Z mike $"
+ * Banner routines for the CUPS scheduler.
  *
- *   Banner routines for the Common UNIX Printing System (CUPS).
+ * Copyright 2007-2011 by Apple Inc.
+ * Copyright 1997-2006 by Easy Software Products.
  *
- *   Copyright 2007-2008 by Apple Inc.
- *   Copyright 1997-2006 by Easy Software Products.
- *
- *   These coded instructions, statements, and computer programs are the
- *   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:
- *
- *   cupsdFindBanner()  - Find a named banner.
- *   cupsdLoadBanners() - Load all available banner files...
- *   add_banner()       - Add a banner to the array.
- *   compare_banners()  - Compare two banners.
- *   free_banners()     - Free all banners.
+ * These coded instructions, statements, and computer programs are the
+ * 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
+ * missing or damaged, see the license at "http://www.cups.org/".
  */
 
 /*
@@ -192,7 +182,7 @@ compare_banners(
     const cupsd_banner_t *b0,          /* I - First banner */
     const cupsd_banner_t *b1)          /* I - Second banner */
 {
-  return (strcasecmp(b0->name, b1->name));
+  return (_cups_strcasecmp(b0->name, b1->name));
 }
 
 
@@ -217,8 +207,3 @@ free_banners(void)
   cupsArrayDelete(Banners);
   Banners = NULL;
 }
-
-
-/*
- * End of "$Id: banners.c 7221 2008-01-16 22:20:08Z mike $".
- */