]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/stored/dev.h
Change set_label() to set_labeled() -- a bit clearer
[bacula/bacula] / bacula / src / stored / dev.h
index 886b53be07c074358780ea5ae0343f150be5cad2..eef16d4d149d7a920315d46ed095fbe0e98b599d 100644 (file)
@@ -281,12 +281,12 @@ public:
    void set_eof(); /* in dev.c */
    void set_eot(); /* in dev.c */
    void set_append() { state |= ST_APPEND; };
-   void set_label() { state |= ST_LABEL; };
+   void set_labeled() { state |= ST_LABEL; };
    void set_read() { state |= ST_READ; };
    void set_offline() { state |= ST_OFFLINE; };
    void clear_append() { state &= ~ST_APPEND; };
    void clear_read() { state &= ~ST_READ; };
-   void clear_label() { state &= ~ST_LABEL; };
+   void clear_labeled() { state &= ~ST_LABEL; };
    void clear_offline() { state &= ~ST_OFFLINE; };
    void clear_eot() { state &= ~ST_EOT; };
 };