From f78a534dd20d0afa0a63abf693add4286c0e3f37 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 11 Feb 2010 21:28:48 +1100 Subject: s4-net-drs: fix some coding style issues We should use the system/*.h headers for system includes. We also try to avoid C++ comments. Signed-off-by: Andrew Tridgell --- source4/utils/net/drs/net_drs.c | 3 +-- source4/utils/net/drs/net_drs_kcc.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/source4/utils/net/drs/net_drs.c b/source4/utils/net/drs/net_drs.c index 7772d83ace..c28684314c 100644 --- a/source4/utils/net/drs/net_drs.c +++ b/source4/utils/net/drs/net_drs.c @@ -25,8 +25,7 @@ #include "net_drs.h" #include "lib/ldb/include/ldb.h" #include "lib/ldb_wrap.h" - -#include +#include "system/filesys.h" /** diff --git a/source4/utils/net/drs/net_drs_kcc.c b/source4/utils/net/drs/net_drs_kcc.c index fb2c661d9b..059b26fca5 100644 --- a/source4/utils/net/drs/net_drs_kcc.c +++ b/source4/utils/net/drs/net_drs_kcc.c @@ -126,7 +126,7 @@ int net_drs_kcc_cmd(struct net_context *ctx, int argc, const char **argv) d_printf("%s\n", site_name); if (site_options) { - // TODO: print meaningfull site options here + /* TODO: print meaningfull site options here */ d_printf("Current Site Options: 0x%X\n", site_options); } else { d_printf("Current Site Options: (none)\n"); -- cgit