~ubuntu-branches/ubuntu/breezy/samba/breezy-security

« back to all changes in this revision

Viewing changes to source/smbd/connection.c

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-07-21 17:53:23 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050721175323-m3oh6aoigywohfnq
Tags: 3.0.14a-6ubuntu1
Resynchronise with Debian, resolving merge conflicts (#12360)

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
 
218
218
        dbuf = tdb_fetch(tdb, kbuf);
219
219
        if (!dbuf.dptr) {
220
 
                DEBUG(0,("register_message_flags: tdb_fetch failed\n"));
 
220
                DEBUG(0,("register_message_flags: tdb_fetch failed: %s\n",
 
221
                        tdb_errorstr(tdb)));
221
222
                return False;
222
223
        }
223
224
 
228
229
                pcrec->bcast_msg_flags &= ~msg_flags;
229
230
 
230
231
        if (tdb_store(tdb, kbuf, dbuf, TDB_REPLACE) != 0) {
231
 
                DEBUG(0,("register_message_flags: tdb_store failed with error %s.\n",
 
232
                DEBUG(0,("register_message_flags: tdb_store failed: %s.\n",
232
233
                        tdb_errorstr(tdb) ));
233
234
                SAFE_FREE(dbuf.dptr);
234
235
                return False;