aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-01-29 19:08:12 +0000
committerGuy Harris <guy@alum.mit.edu>2000-01-29 19:08:12 +0000
commit8e5f4073464ef3d5ef6fd81e3c48c18151a98b6f (patch)
treebdcad615e22ab372fda18bfb3a10857daff19008 /util.c
parentf292c583bfb68bf1db2f7463ba7f6304dabc5f07 (diff)
Fix #ifndef line whose symbol had been omitted.
svn path=/trunk/; revision=1581
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index c55290ec95..2fe999b83f 100644
--- a/util.c
+++ b/util.c
@@ -1,7 +1,7 @@
/* util.c
* Utility routines
*
- * $Id: util.c,v 1.32 2000/01/29 19:06:59 guy Exp $
+ * $Id: util.c,v 1.33 2000/01/29 19:08:12 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -585,7 +585,7 @@ get_home_dir(void)
{
char *env_value;
static const char *home = NULL;
-#ifndef
+#ifndef WIN32
uid_t uid;
struct passwd *pwd;
#endif