~ubuntu-branches/debian/jessie/netatalk/jessie

« back to all changes in this revision

Viewing changes to etc/cnid_dbd/main.c

  • Committer: Package Import Robot
  • Author(s): Jonas Smedegaard
  • Date: 2012-03-20 23:37:08 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20120320233708-sp2k0av7f9sjnf4w
Tags: 2.2.2-1
* New upstream release.
* Drop patch cherry-picked upstream: Included in new upstream release.
* Build-depend on libldap2-dev and libacl1-dev, to enable LDAP support
  and support for extended ACLs (and possibly avoid FTBFS).
  Closes: bug#645290, #651406. Thanks to Peter Eisentraut and masc.
* Update copyright file:
  + Bump format to 1.0.
  + Fix double-indent in Copyright fields as per Policy §5.6.13.
  + Add Files paragraph for ACL code.
* Bump standards-version to 3.9.3.
* Update copyright file: Add disclaimer to License paragraph
  GAP~Makefile.in.
* Bump debhelper compat level to 7.
* Add patch 101 to start avahi-daemon (if available) before atalkd.
  Recommend avahi-daemon.

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
 
289
289
    set_processname("cnid_dbd");
290
290
 
291
 
    while (( ret = getopt( argc, argv, "d")) != -1 ) {
 
291
    while (( ret = getopt( argc, argv, "vVd")) != -1 ) {
292
292
        switch (ret) {
 
293
        case 'v':
 
294
        case 'V':
 
295
            printf("cnid_dbd (Netatalk %s)\n", VERSION);
 
296
            return -1;
293
297
        case 'd':
294
298
            delete_bdb = 1;
295
299
            break;