+* [Bug 887] Fix error in ntp_types.h (for sizeof int != 4).
* Bug 880 bug fixes for Windows build
* Improve Calysto support.
* The "revoke" parameter is a crypto command.
-;; This is how Dave Mills likes to see the code formatted.
+;; This is how Dave Mills likes to see the NTP code formatted.
(defconst ntp-c-style
- '((c-basic-offset . 8)
+ '((c-basic-offset . 8)
+ (fill-column . 72)
(c-offsets-alist . ((arglist-intro . +)
(case-label . *)
(statement-case-intro . *)
(statement-cont . *)
(substatement-open . 0))))
- "Dave L. Mills; programming style for use with ntp")
+ "David L. Mills; NTP code indentation style")
(defun ntp-c-mode-common-hook ()
;; add ntp c style
# endif
#else /* not sizeof(int) == 4 */
# if (SIZEOF_LONG == 4)
-# else /* not sizeof(long) == 4 */
# ifndef int32
# define int32 long
# endif
# ifndef u_int32
# define u_int32 unsigned long
# endif
+# else /* not sizeof(long) == 4 */
+# include "Bletch: what's 32 bits on this machine?"
# endif /* not sizeof(long) == 4 */
-# include "Bletch: what's 32 bits on this machine?"
#endif /* not sizeof(int) == 4 */
typedef u_char ntp_u_int8_t;