dtcm: Resolve CID 87562
[oweals/cde.git] / cde / programs / dtcm / dtcm / goto.c
index 9691a4c947fb195117a6b3bac5f72f964ea52ff1..c73c26e0c4098aa63239d7d3538265ba6196f4ec 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
+ */
 /*******************************************************************************
 **
 **  goto.c
@@ -236,8 +258,8 @@ goto_date(Widget widget, XtPointer client_data, XmPushButtonCallbackStruct *cbs)
         g = (Goto*)c->goTo;
  
        date = XmTextGetString(g->datetext);
-       if ((*date == NULL) || (date == NULL)) {
-               sprintf(message, catgets(c->DT_catd, 1, 297, "Please type in a date"));
+       if ((date == NULL) || (*date == '\0')) {
+               sprintf(message, "%s", catgets(c->DT_catd, 1, 297, "Please type in a date"));
                set_message(g->goto_message, message);
                 return;
        }
@@ -257,17 +279,17 @@ goto_date(Widget widget, XtPointer client_data, XmPushButtonCallbackStruct *cbs)
  
 
        if (gotodate == DATE_BBOT) {
-               sprintf(message, catgets(c->DT_catd, 1, 814, "You must enter a date after 1969 and before 2038"));
+               sprintf(message, "%s", catgets(c->DT_catd, 1, 814, "You must enter a date after 1969 and before 2038"));
                set_message(g->goto_message, message);
                 return;
        }
        else if (gotodate == DATE_AEOT) {
-               sprintf(message, catgets(c->DT_catd, 1, 814, "You must enter a date after 1969 and before 2038"));
+               sprintf(message, "%s", catgets(c->DT_catd, 1, 814, "You must enter a date after 1969 and before 2038"));
                set_message(g->goto_message, message);
                 return;
        }
         else if (gotodate <= 0) {
-               sprintf(message, catgets(c->DT_catd, 1, 299, "Invalid Date"));
+               sprintf(message, "%s", catgets(c->DT_catd, 1, 299, "Invalid Date"));
                set_message(g->goto_message, message);
                 return;
         }