]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - scheduler/banners.c
License change: Apache License, Version 2.0.
[thirdparty/cups.git] / scheduler / banners.c
index 66305fb0869c65f8547fee5ea6b3cecfb5b5c966..e9399230209ab1475c729d7b7f5fe5167acf14f2 100644 (file)
@@ -1,24 +1,10 @@
 /*
- * "$Id: banners.c 6649 2007-07-11 21:46:42Z 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.
+ * Licensed under Apache License v2.0.  See the file "LICENSE" for more information.
  */
 
 /*
@@ -192,7 +178,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 +203,3 @@ free_banners(void)
   cupsArrayDelete(Banners);
   Banners = NULL;
 }
-
-
-/*
- * End of "$Id: banners.c 6649 2007-07-11 21:46:42Z mike $".
- */