]> git.sur5r.net Git - bacula/bacula/commitdiff
More word alignment cleanup.
authorKern Sibbald <kern@sibbald.com>
Fri, 20 Jun 2008 15:42:40 +0000 (15:42 +0000)
committerKern Sibbald <kern@sibbald.com>
Fri, 20 Jun 2008 15:42:40 +0000 (15:42 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@7194 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/qt-console/bat_conf.cpp
bacula/src/qt-console/bat_conf.h
bacula/src/stored/dircmd.c
bacula/src/version.h
bacula/technotes-2.5

index 35974d42dd879b039e1eb1bdb2b478f08d0ed2ea..8dca8462a3f84cbdaca501f08a8654fa7ebcaf22 100644 (file)
@@ -79,7 +79,7 @@ int  res_all_size = sizeof(res_all);
 static RES_ITEM dir_items[] = {
    {"name",        store_name,     ITEM(dir_res.hdr.name), 0, ITEM_REQUIRED, 0},
    {"description", store_str,      ITEM(dir_res.hdr.desc), 0, 0, 0},
-   {"dirport",     store_int,      ITEM(dir_res.DIRport),  0, ITEM_DEFAULT, 9101},
+   {"dirport",     store_pint32,   ITEM(dir_res.DIRport),  0, ITEM_DEFAULT, 9101},
    {"address",     store_str,      ITEM(dir_res.address),  0, ITEM_REQUIRED, 0},
    {"password",    store_password, ITEM(dir_res.password), 0, 0, 0},
    {"tlsauthenticate",store_bool,    ITEM(dir_res.tls_authenticate), 0, 0, 0},
index e09678c4a1e7ce91c00cd035b5762f344b56178c..69b86f77d8dcdf9e642a16e0f330f58a3e8dc32d 100644 (file)
@@ -64,7 +64,7 @@ enum {
 class DIRRES {
 public:
    RES   hdr;
-   int   DIRport;                     /* UA server port */
+   uint32_t DIRport;                  /* UA server port */
    char *address;                     /* UA server address */
    char *password;                    /* UA server password */
    bool tls_authenticate;             /* Authenticate with tls */
index 5891d6d0ec05ac13a6ba4031db1a0b97264d4274..b2eb57dcfd6b068159291563667700e32b5711b5 100644 (file)
@@ -97,7 +97,7 @@ static void send_dir_busy_message(BSOCK *dir, DEVICE *dev);
 struct s_cmds {
    const char *cmd;
    bool (*func)(JCR *jcr);
-   int monitoraccess; /* specify if monitors have access to this function */
+   bool monitoraccess;                      /* set if monitors can access this cmd */
 };
 
 /*
index dfc0f21edcd4351497b6bbf3799023329ca0a4af..d9fd1b75b1f20180f71f56442c30fe18fc9249f0 100644 (file)
@@ -4,8 +4,8 @@
 
 #undef  VERSION
 #define VERSION "2.5.1"
-#define BDATE   "18 June 2008"
-#define LSMDATE "18Jun08"
+#define BDATE   "20 June 2008"
+#define LSMDATE "20Jun08"
 
 #define PROG_COPYRIGHT "Copyright (C) %d-2008 Free Software Foundation Europe e.V.\n"
 #define BYEAR "2008"       /* year for copyright messages in progs */
index 73690584601b0e9c5cec628557e07c9c092b11d0..37c7447d062b3de020365427bcdf3f75688be126 100644 (file)
@@ -30,6 +30,8 @@ vtape driver
 
 
 General:
+20Jun08
+kes  More word alignment cleanup.
 19Jun08
 kes  Add dbuser to DIR conf file (replaces user).
 kes  Add --with-db-password to ./configure