dtcm: Resolve CID 87822
[oweals/cde.git] / cde / programs / dtcm / server / v5ops.c
index 011f010492c94ea2d36daf71b742beffad8789e7..0acf876cccc1de2bc709737a8383ff5155220f60 100644 (file)
@@ -1,3 +1,25 @@
+/*
+ * CDE - Common Desktop Environment
+ *
+ * Copyright (c) 1993-2012, The Open Group. All rights reserved.
+ *
+ * These libraries and programs are free software; you can
+ * redistribute them and/or modify them under the terms of the GNU
+ * Lesser General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option)
+ * any later version.
+ *
+ * These libraries and programs are distributed in the hope that
+ * they will be useful, but WITHOUT ANY WARRANTY; without even the
+ * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU Lesser General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with these librararies and programs; if not, write
+ * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
+ * Floor, Boston, MA 02110-1301 USA
+ */
 /* $XConsortium: v5ops.c /main/4 1995/11/09 12:55:44 rswiston $ */
 /*
  *  (c) Copyright 1993, 1994 Hewlett-Packard Company
@@ -297,14 +319,14 @@ _DtCmsUpdateDurationInRule(cms_entry *entry, uint remain)
 
        sprintf(buf, "#%d", remain);
        if (ptr = strchr(vptr->item.string_value, '#')) {
-               *ptr = NULL;
+               *ptr = '\0';
                strcpy(newrule, vptr->item.string_value);
                strcat(newrule, buf);
                if (ptr = strchr(ptr + 1, ' '))
                        strcat(newrule, ptr);
        } else {
                if (ptr = strchr(vptr->item.string_value, ' ')) {
-                       *ptr = NULL;
+                       *ptr = '\0';
                        sprintf(newrule, "%s %s %s", vptr->item.string_value,
                                buf, ptr+1);
                } else