1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-26 01:49:31 +03:00

s3:eventlogadm make a transaction for addsource

Signed-off-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Gregor Beck
2012-04-19 13:32:26 +02:00
committed by Andreas Schneider
parent c6224e46aa
commit 4eb4f75371

View File

@ -28,6 +28,7 @@
#include "registry/reg_api.h"
#include "registry/reg_init_basic.h"
#include "registry/reg_util_token.h"
#include "registry/reg_backend_db.h"
#include "../libcli/registry/util_reg.h"
extern int optind;
@ -265,9 +266,21 @@ static int DoAddSourceCommand( int argc, char **argv, bool debugflag, char *exen
printf("Can't open the registry: %s.\n", win_errstr(werr));
return -1;
}
werr = regdb_transaction_start();
if (!W_ERROR_IS_OK(werr)) {
printf("Can't start transaction on registry: %s.\n", win_errstr(werr));
return -1;
}
if ( !eventlog_add_source( argv[0], argv[1], argv[2] ) )
if ( !eventlog_add_source( argv[0], argv[1], argv[2] ) ) {
regdb_transaction_cancel();
return -2;
}
werr = regdb_transaction_commit();
if (!W_ERROR_IS_OK(werr)) {
printf("Failed to commit transaction on registry: %s.\n", win_errstr(werr));
return -1;
}
return 0;
}