~ubuntu-branches/debian/sid/netatalk/sid

« back to all changes in this revision

Viewing changes to bin/ad/ad.c

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2011-06-05 21:04:21 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110605210421-19gag2srevj0ocxh
Tags: 2.2~beta4-1
* New upstream release.
  + Fixes "Internal Error" after ad_open on sparc.
    Closes: bug#606005. Thanks to Alfredo Sola.
* Adjust references to unofficial packages in README.Debian.
* Use dversionmangle (not uversionmangle) in watch file. Fix add
  leading dash (-) to upstream version in mangling.
* Update patches:
  + Drop patches 107 and 294 (Zeroconf support): Implemented
    (differently) upstream now.
  + Drop patches 109 and 112 (avoid broken XFS linkage) obsolete.
  + Drop patch 200 (hostname resolving): adopted upstream.
  + Refresh patch 205.
* Rewrite copyright file using draft 174 of DEP-5 format.
* Build-depend on and recommend unversioned (i.e. default) BerkeleyDB
  packages.
  Closes: bug#621413. Thanks to Ondřej Surý.
  Simplify suggestions on older versioned BerkeleyDB packages.
* Stop installing some documentation dropped upstream, and let CDBS
  automagically handle some of the remains.
* Update control file:
  + Bump policy compliance to standards-version 3.9.2.
  + Shorten Vcs-* URLs.
* Add patches 115 and (for automade file) 214 to avoid installing
  unneeded /default dir.
  Closes: bug#628119. Thanks to Russell Muetzelfeldt and Luk Claes.
* Don't ship .la files. Closes: bug#621849. Thanks to Andreas Metzler
  and Luk Claes.
* Stop renaming afile and achfile, dropped upstream.
* Explicitly enable DDP (AppleTalk), now disabled by default.
* Enable Zeroconf, should be stable now.
* Simplify package relations:
  + Drop (build-)dependency fallback unneeded even for oldstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
   Copyright (c) 2009 Frank Lahm <franklahm@gmail.com>
 
3
   
 
4
   This program is free software; you can redistribute it and/or modify
 
5
   it under the terms of the GNU General Public License as published by
 
6
   the Free Software Foundation; either version 2 of the License, or
 
7
   (at your option) any later version.
 
8
 
 
9
   This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
 
13
*/
 
14
 
 
15
#ifdef HAVE_CONFIG_H
 
16
#include "config.h"
 
17
#endif /* HAVE_CONFIG_H */
 
18
 
 
19
#include <unistd.h>
 
20
#include <sys/types.h>
 
21
#include <stdlib.h>
 
22
#include <stdio.h>
 
23
#include <stdarg.h>
 
24
#include <limits.h>
 
25
#include <signal.h>
 
26
#include <string.h>
 
27
#include <errno.h>
 
28
 
 
29
#include <atalk/cnid.h>
 
30
#include <atalk/volinfo.h>
 
31
#include <atalk/logger.h>
 
32
#include <atalk/util.h>
 
33
 
 
34
#include "ad.h"
 
35
 
 
36
static void usage_main(void)
 
37
{
 
38
    printf("Usage: ad ls|cp|rm|mv|find [file|dir, ...]\n");
 
39
}
 
40
 
 
41
int main(int argc, char **argv)
 
42
{
 
43
    setuplog("default log_note /dev/tty");
 
44
 
 
45
    if (argc < 2) {
 
46
        usage_main();
 
47
        return 1;
 
48
    }
 
49
 
 
50
    if (STRCMP(argv[1], ==, "ls"))
 
51
        return ad_ls(argc - 1, argv + 1);
 
52
    else if (STRCMP(argv[1], ==, "cp"))
 
53
        return ad_cp(argc - 1, argv + 1);
 
54
    else if (STRCMP(argv[1], ==, "rm"))
 
55
        return ad_rm(argc - 1, argv + 1);
 
56
    else if (STRCMP(argv[1], ==, "mv"))
 
57
        return ad_mv(argc, argv);
 
58
    else if (STRCMP(argv[1], ==, "find"))
 
59
        return ad_find(argc, argv);
 
60
    else {
 
61
        usage_main();
 
62
        return 1;
 
63
    }
 
64
 
 
65
    return 0;
 
66
}