changeset 443:78165914b12d

entered into RCS
author Jim Blandy <jimb@redhat.com>
date Wed, 04 Dec 1991 22:51:54 +0000
parents 71931fd06ed6
children 4cec2e6d4f9e
files lib-src/yow.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/yow.c	Wed Dec 04 22:11:48 1991 +0000
+++ b/lib-src/yow.c	Wed Dec 04 22:51:54 1991 +0000
@@ -9,7 +9,7 @@
 
 #include <stdio.h>
 #include <ctype.h>
-#include "../src/paths.h"      /* For PATH_EXEC.  */
+#include "../src/paths.h"      /* For PATH_DATA.  */
 
 #define BUFSIZE  80
 #define SEP      '\0'
@@ -30,9 +30,9 @@
     strcpy (file, argv[2]);
   else
 #ifdef vms
-    sprintf (file, "%s%s", PATH_EXEC, YOW_FILE);
+    sprintf (file, "%s%s", PATH_DATA, YOW_FILE);
 #else
-    sprintf (file, "%s/%s", PATH_EXEC, YOW_FILE);
+    sprintf (file, "%s/%s", PATH_DATA, YOW_FILE);
 #endif
 
   if ((fp = fopen(file, "r")) == NULL) {