aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-01-29 19:08:12 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-01-29 19:08:12 +0000
commit11a2d7021758b3d8d5d5ef1063878bc8c9d9736d (patch)
treebdcad615e22ab372fda18bfb3a10857daff19008 /util.c
parentf8889feb7b875ea11d8103b3ad487186a26fb2de (diff)
Fix #ifndef line whose symbol had been omitted.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1581 f5534014-38df-0310-8fa8-9805f1628bb7
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