Ignore:
Timestamp:
May 27, 2009, 9:09:42 AM (16 years ago)
Author:
Herwig Bauernfeind
Message:

Update 3.2 branch to 3.2.8

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/samba-3.2.x/source/lib/dbwrap_util.c

    r149 r232  
    7979}
    8080
    81 bool dbwrap_store_uint32(struct db_context *db, const char *keystr, uint32_t v)
     81int dbwrap_store_uint32(struct db_context *db, const char *keystr, uint32_t v)
    8282{
    8383        struct db_record *rec;
     
    8787        rec = db->fetch_locked(db, NULL, string_term_tdb_data(keystr));
    8888        if (rec == NULL) {
    89                 return false;
     89                return -1;
    9090        }
    9191
Note: See TracChangeset for help on using the changeset viewer.