diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-08-25 13:55:26 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-08-25 13:55:26 +0200 |
commit | f24f3abc10bafa6edbdc37c1ff72b3d68082e041 (patch) | |
tree | fcb3a9fbf43ed14ef855050b77b72a9930fca7b1 /debian/patches/fixes0002-libdiskfs-add-missing-declarations.patch | |
parent | 15490504bc7798b75383d08fe3ecf5b908e35678 (diff) |
drop merged patches
Diffstat (limited to 'debian/patches/fixes0002-libdiskfs-add-missing-declarations.patch')
-rw-r--r-- | debian/patches/fixes0002-libdiskfs-add-missing-declarations.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/debian/patches/fixes0002-libdiskfs-add-missing-declarations.patch b/debian/patches/fixes0002-libdiskfs-add-missing-declarations.patch deleted file mode 100644 index 0066d112..00000000 --- a/debian/patches/fixes0002-libdiskfs-add-missing-declarations.patch +++ /dev/null @@ -1,33 +0,0 @@ -From e507800e47973422c080a308955f8d46edc5d706 Mon Sep 17 00:00:00 2001 -From: Justus Winter <4winter@informatik.uni-hamburg.de> -Date: Sun, 24 May 2015 14:37:20 +0200 -Subject: [PATCH hurd 2/3] libdiskfs: add missing declarations - -* libdiskfs/diskfs.h (diskfs_node_disknode): Add missing declaration. -(diskfs_disknode_node): Likewise. ---- - libdiskfs/diskfs.h | 8 ++++++++ - 1 file changed, 8 insertions(+) - -diff --git a/libdiskfs/diskfs.h b/libdiskfs/diskfs.h -index d98de8f..11fb0ad 100644 ---- a/libdiskfs/diskfs.h -+++ b/libdiskfs/diskfs.h -@@ -732,6 +732,14 @@ struct node *diskfs_make_node_alloc (size_t size); - this value for offset calculations. */ - extern const size_t _diskfs_sizeof_struct_node; - -+/* Return the address of the disknode for NODE. NODE must have been -+ allocated using diskfs_make_node_alloc. */ -+struct disknode *diskfs_node_disknode (struct node *node); -+ -+/* Return the address of the node for DISKNODE. DISKNODE must have -+ been allocated using diskfs_make_node_alloc. */ -+struct node *diskfs_disknode_node (struct disknode *disknode); -+ - #if defined(__USE_EXTERN_INLINES) || defined(DISKFS_DEFINE_EXTERN_INLINE) - - /* Return the address of the disknode for NODE. NODE must have been --- -2.1.4 - |