summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexander Chernyakhovsky <achernya@mit.edu>2014-05-03 19:37:04 -0400
committerGravatar Alexander Chernyakhovsky <achernya@mit.edu>2014-05-03 19:37:04 -0400
commit44041648e79f1a3d0f46903ad84ebcd5261d0c98 (patch)
tree17ea366c7e46828d414726a607e20d12e2feadff
parentfcc7c2678291f51fe80aeefa3223f98ec65e0bd4 (diff)
Correct a typo in test_server.c
"#ifd" is not a valid preprocessor symbol.
-rw-r--r--server/test_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/test_server.c b/server/test_server.c
index 0d91eb1..cec33f8 100644
--- a/server/test_server.c
+++ b/server/test_server.c
@@ -80,7 +80,7 @@ int
main(int argc, char **argv)
{
int logopt = 0;
-#ifd 0 && defined(LOG_PERROR)
+#if 0 && defined(LOG_PERROR)
logopt = LOG_PERROR;
#endif
openlog("test_server", logopt, LOG_USER);