trawick 01/04/07 07:23:23
Modified: threadproc/unix signals.c
Log:
Fix a #error so that signals.c compiles again.
Submitted by: Justin Erenkrantz <[EMAIL PROTECTED]>
Revision Changes Path
1.31 +1 -1 apr/threadproc/unix/signals.c
Index: signals.c
===================================================================
RCS file: /home/cvs/apr/threadproc/unix/signals.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- signals.c 2001/04/06 23:51:38 1.30
+++ signals.c 2001/04/07 14:23:22 1.31
@@ -317,7 +317,7 @@
#elif HAVE_SIGSUSPEND
sigsuspend(&sig_mask);
#else
-#error No apr_sigwait() and no sigsuspend(); I'm stuck.
+#error No apr_sigwait() and no sigsuspend(); I am stuck.
#endif
}
}