dtaction: Resolve 8 warnings caused by -Wall
authorPeter Howkins <flibble@users.sf.net>
Tue, 20 Nov 2012 16:22:04 +0000 (16:22 +0000)
committerPeter Howkins <flibble@users.sf.net>
Tue, 20 Nov 2012 16:22:04 +0000 (16:22 +0000)
cde/programs/dtaction/Main.c

index 3445b986672cbbb7081d9f722ac8194c56d7ab18..25712fcf4972675a974e64b6e968b16f016dceba 100644 (file)
@@ -49,7 +49,7 @@
 #include <locale.h>
 #include <sys/param.h>         /* for MAXPATHLEN and MAXHOSTNAMELEN */
 
-#ifdef sun
+#if defined(sun) || defined(linux)
 #include <crypt.h>
 #include <shadow.h>
 #endif
@@ -61,6 +61,7 @@
 #include <X11/Intrinsic.h>
 #include <Xm/XmP.h>
 #include <Xm/Text.h>
+#include <Xm/TextF.h>
 #include <Xm/SelectioB.h>
 #include <Xm/MessageB.h>
 #include <Xm/Protocols.h>
@@ -87,12 +88,6 @@ XrmOptionDescRec option_list[] =
    {  "-termOpts", "termOpts",      XrmoptionSepArg,   NULL},
 };
 
-/* Fallback Resources */
-static char *fallback_resources[] = {
-    "*timeout: 5",
-    (char *) NULL
-};
-
 typedef struct {
    char * user;
    char * contextDir;
@@ -291,7 +286,6 @@ main(
     int n=0;
     char *actionName;
     int numArgs = 0;
-    char contextDir[MAXPATHLEN+1];
     DtActionArg *ap = NULL;
   
     XtSetLanguageProc(NULL, NULL, NULL);