diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-03-05 14:01:45 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-03-05 14:01:45 +0100 |
commit | 18a9b4f2f1cbac734d2d16252b45d7ab11bc746f (patch) | |
tree | d1e8420730a58fa11a3a06afc12129f00770d8e8 /plugins/password/helpers/chgdbmailusers.c | |
parent | 2b8f033bcbd5581ff7b27b396f308b77058c09dc (diff) |
Fix dbmail driver (hints from https://github.com/roundcube/roundcubemail/pull/169)
Diffstat (limited to 'plugins/password/helpers/chgdbmailusers.c')
-rw-r--r-- | plugins/password/helpers/chgdbmailusers.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/password/helpers/chgdbmailusers.c b/plugins/password/helpers/chgdbmailusers.c index 28f79c100..22793857d 100644 --- a/plugins/password/helpers/chgdbmailusers.c +++ b/plugins/password/helpers/chgdbmailusers.c @@ -5,7 +5,6 @@ // set the UID this script will run as (root user) #define UID 0 #define CMD "/usr/sbin/dbmail-users" -#define RCOK 0x100 /* INSTALLING: gcc -o chgdbmailusers chgdbmailusers.c @@ -38,7 +37,7 @@ main(int argc, char *argv[]) cc = setuid(UID); rc = system(cmnd); - if ((rc != RCOK) || (cc != 0)) + if ((rc != 0) || (cc != 0)) { fprintf(stderr, "__ %s: failed %d %d\n", argv[0], rc, cc); return 1; |