dgaudet 97/12/15 23:36:31
Modified: src/main http_config.c
Log:
Yet another 64-bit tweak like all the others... I'm too lazy to post it and
wait for votes.
Revision Changes Path
1.89 +1 -1 apachen/src/main/http_config.c
Index: http_config.c
===================================================================
RCS file: /export/home/cvs/apachen/src/main/http_config.c,v
retrieving revision 1.88
retrieving revision 1.89
diff -u -r1.88 -r1.89
--- http_config.c 1997/12/14 14:39:37 1.88
+++ http_config.c 1997/12/16 07:36:30 1.89
@@ -876,7 +876,7 @@
This allows .htaccess to be independent of server_root,
so the server can be moved or mirrored with less pain. */
char *p;
- int offset = (int) cmd->info;
+ int offset = (int) (long) cmd->info;
if (os_is_path_absolute(arg))
p = pstrdup(cmd->pool, arg);
else