]> git.sur5r.net Git - openldap/blobdiff - libraries/liblutil/getopt.c
Cleanup extraneous debug
[openldap] / libraries / liblutil / getopt.c
index 137944ab6f7d2552305e311af20fadaa53e6bd8a..5e4e02273c3c9ac327666da239a6289246bfeac9 100644 (file)
@@ -1,14 +1,24 @@
+/* getopt.c -- replacement getopt(3) routines */
 /* $OpenLDAP$ */
-/*
- * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
+ *
+ * Copyright 1998-2007 The OpenLDAP Foundation.
+ * Portions Copyright 1998-2003 Kurt D. Zeilenga.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted only as authorized by the OpenLDAP
+ * Public License.
+ *
+ * A copy of this license is available in the file LICENSE in the
+ * top-level directory of the distribution or, alternatively, at
+ * <http://www.OpenLDAP.org/license.html>.
+ */
+/* This work is based upon the public-domain getopt(3) routines
+ * developed by AT&T.  Modified by Kurt D. Zeilenga for inclusion
+ * into OpenLDAP Software.  Significant contributors include:
+ *   Howard Chu
  */
-/*
-       getopt.c
-
-       modified public-domain AT&T getopt(3)
-       modified by Kurt Zeilenga for inclusion into OpenLDAP
-*/
 
 #include "portable.h"
 
@@ -90,7 +100,7 @@ printf("DF_TRACE_DEBUG:      int getopt () in getopt.c\n");
        optopt = (int) c;
        if (c == arg || (cp = strchr(opts,c)) == NULL)
        {
-               ERR(argv,": illegal option--",c);
+               ERR(argv,_(": illegal option--"),c);
                if (argv[optind][++sp] == eos)
                {
                        optind++;
@@ -104,7 +114,7 @@ printf("DF_TRACE_DEBUG:     int getopt () in getopt.c\n");
                        optarg = &argv[optind++][sp + 1];
                else if (++optind >= argc)
                {
-                       ERR(argv,": option requires an argument--",c);
+                       ERR(argv,_(": option requires an argument--"),c);
                        sp = 1;
                        return error;
                }